阅读约 1 分钟

constexpr 与编译期求值顺序

constexpr 函数不保证在编译期求值。只有在需要常量表达式的场合——数组长度、模板实参、static_assert——编译器才强制走编译期;其它情况下它可以退化成普通的函数调用。

继续阅读
阅读约 1 分钟

Class

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 …

继续阅读