与流行的看法相反,在类定义中初始化静态常量积分不足以生成所需的必要定义通过其他代码。从提供的代码报告的编译错误可以看出,仍然强制需要单独定义:
#include <algorithm> #include <iostream> class test { public: static const int N = 10; }; int main() { std::cout << test::N << "\n"; std::min(9, test::N); // Error: Undefined reference to `test::N' }
这个问题源于 std::min 的参数获取机制:它通过 const 引用捕获值。如果按值获取,则不需要单独定义。
虽然在类外部定义静态 const 成员可以解决问题,但有一个更好的解决方案:使用 constexpr 关键字。这消除了单独定义的需要并处理其他边缘情况。
class test { public: static constexpr int N = 10; };
以上是为什么静态常量整数成员需要在 C 中单独定义?的详细内容。更多信息请关注PHP中文网其他相关文章!