constexpr 与编译期求值顺序
constexpr 函数不保证在编译期求值。只有在需要常量表达式的场合——数组长度、模板实参、static_assert——编译器才强制走编译期;其它情况下它可以退化成普通的函数调用。
专栏
碎片化的笔记与想法,短小、未经打磨,用于快速记录。
constexpr 函数不保证在编译期求值。只有在需要常量表达式的场合——数组长度、模板实参、static_assert——编译器才强制走编译期;其它情况下它可以退化成普通的函数调用。
virtual This word is supplied for c++98 standard, decorate VIRTUAL with OVERRIDE and FINAL is C++11 Declare the function is a virtual function——allow derived class overwrite the …