C++开发初级


652 浏览 5 years, 11 months

99.6 constexpr

版权声明: 转载请注明出处 http://www.codingsoho.com/

constexpr

constexpr用于修饰编译时可计算的常量表达式

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

float a[square(9)];float a[81];