C++ constexpr函数、带默认参数值的函数、函数重载
constexpr语法规定该函数是一个常量表达式constexpr修饰的函数在其所有参数都是constexpr时一定返回constexprconstexpr 函数举例constexpr int get_size() {return 20;}constexpr int foo = get_size(); //前缀了constexpr后,在编译器编译期间就可以直接将其编译//正确...