作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我需要一个带有静态 std::vector<int> simples
的类(前 N 个简单数字)。我用静态方法创建了它 __init__
,在创建 MyClass 的任何实例之前调用:
class MyClass
{
public:
MyClass()
{
/* I need to use MyClass::simples here */
printf("%d\n", (int)MyClass::simples.size());
/* But I get the error here :( */
}
static void __init__(int N)
{
simples.push_back(2);
/* ...
here I compute first N simple numbers and fill
MyClass::simples with them
*/
}
private:
static std::vector<int> simples;
};
int main()
{
MyClass::__init__(1000);
MyClass var;
return 0;
}
但是当我试图在构建中使用这个 vector 时,我得到了 undefined reference to 'MyClass::simples'
错误。如何解决我的问题?
我是一名优秀的程序员,十分优秀!