gpt4 book ai didi

c++ - 我创建静态数据成员的代码有什么问题?

转载 作者:行者123 更新时间:2023-11-27 23:56:44 24 4
gpt4 key购买 nike

<分区>

我只是为 staticconstglobal 变量编写各种方案,以查看它们在哪里工作以及在哪里不工作。

下面的代码让我感到奇怪 collect2: error: ld returned 1 exit status

代码:

#include <iostream>
#include <string>
#include <vector>

using namespace std;
const static int gl = 4;
class Static{
private:
int nonStatic;
const static int count = 10;
//constexpr static string str;
static vector<string> svec;
public:
static vector<string> initVector();
void printVector();
Static(int s=0): nonStatic(s){}
~Static(){}

};

vector<string> Static::initVector()
{
for(int i=0; i<5; i++)
{
string str;
cin>>str;
svec.push_back(str);
}
}

void Static::printVector()
{
for(auto const i: svec)
cout<<i;
}

int main()
{
Static state(4);
return 0;
}

它显示以下 ld 错误消息:

/tmp/ccsX2Fre.o: In function `Static::initVector[abi:cxx11]()':
StaticTests.cpp:(.text+0x4e): undefined reference to `Static::svec[abi:cxx11]'
/tmp/ccsX2Fre.o: In function `Static::printVector()':
StaticTests.cpp:(.text+0xc4): undefined reference to `Static::svec[abi:cxx11]'
collect2: error: ld returned 1 exit status

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