在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
constexpr 类型变量必须用常量表达式或 constexpr 函数来初始化: constexpr int a=10; constexpr int b=a+10; constexpr int c=d(); //当 d()为一个 constexpr 函数时才可以
constexpr 函数的形参和返回值都只能是字面型类型,且只能有一条 return 语句: constexpr d() { return 5; }
如果 constexpr 定义了一个指针,限定符只对指针有效,即为常量指针: constexpr int *p=0; //p为常量指针,与const 不同 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论