C++11 STL constexpr关键字

2021-01-26 10:13

阅读:530

标签:关键字   exp   mamicode   ret   alt   size   expr   ons   end   

自C++11起,constexpr可用来让表达式核定于编译期,例如

constexpr int square(int x){
    return x*x;
}

float a[square(9)];

cout
 

 

 

技术图片

 

C++11 STL constexpr关键字

标签:关键字   exp   mamicode   ret   alt   size   expr   ons   end   

原文地址:https://www.cnblogs.com/xiaoaofengyue/p/12853388.html


评论


亲,登录后才可以留言!