gpt4 book ai didi

c++ - 类模板中封闭类型的静态数组

转载 作者:行者123 更新时间:2023-11-28 02:01:29 26 4
gpt4 key购买 nike

<分区>

我正在尝试编译以下内容:

template<typename T>
class Foo {
protected:
static Foo<T>* pool[5];
public:
static Foo* Bar() {
pool[1] = new Foo();
}
};

int main() {
Foo<int>* b = new Foo<int>();
b->Bar();
}

我得到错误:

 undefined reference to `Foo<int>::pool'

如何定义池数组?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com