#include<iostream>
using namespace std;
//constexpr 是更严格的定义只读变量,其要求该变量的初始化值必须是字面值常数(在未来版本可能扩展为也可以用其他只读变量初始化)
int main()
{
const int a =10;
const int b = a;
constexpr int c =10;
int e =10;
constexpr int d = e;
}
c++ constexpr
最新推荐文章于 2023-07-15 09:37:25 发布