13.constexpr

 1 #include <iostream>
 2 using namespace std;
 3 
 4 //声明返回值为常量表达式
 5 constexpr int get()
 6 {
 7     int num = 5;
 8     return num;
 9 }
10 
11 void main()
12 {
13     int a[5 + get()];
14     cin.get();
15 }

 

posted @ 2018-03-11 13:58  喵小喵~  阅读(93)  评论(0编辑  收藏  举报