gpt4 book ai didi

c++ - "Undefined reference"声明的 C++ 静态成员变量

转载 作者:行者123 更新时间:2023-11-30 01:44:45 29 4
gpt4 key购买 nike

<分区>

我已经开始使用 Java 进行编程,我刚刚达到了我认为在语言知识方面“良好”的水平。

为了好玩,我决定开始使用 C++ 进行编程,我对这门语言相当陌生,但我学得很快,而且我认为它与 Java 相差不远。

我创建了一个测试类,它有一个值和一个名称作为属性,一个对象计数器作为全局变量。

 #include<iostream>


/* local variable is same as a member's name */
class Test
{
private:
double x;
std::string name;
static int nb;
public:
Test(double x, std::string n)
{
this->x=x;
this->name=n;
nb=nb+1;
}
void setX (double x)
{
// The 'this' pointer is used to retrieve the object's x
// hidden by the local variable 'x'
this->x = x;
}
double getX()
{
return this->x;
}
std::string getName()
{
return this->name;
}

static int getNb()
{
return nb;
}

};


int main()
{
Test obj(3.141618, "Pi");
std::cout<<obj.getX()<<" "<<obj.getName()<<" "<<Test::getNb()<<std::endl;
return 0;
}

当程序执行时输出这个错误:

In function `Test::Test(double, std::string)':
(.text._ZN4TestC2EdSs[_ZN4TestC5EdSs]+0x4a): undefined reference to `Test::nb'
(.text._ZN4TestC2EdSs[_ZN4TestC5EdSs]+0x53): undefined reference to `Test::nb'
In function `Test::getNb()':
(.text._ZN4Test5getNbEv[_ZN4Test5getNbEv]+0x6): undefined reference to `Test::nb'
error: ld returned 1 exit status

给我一​​些中文。

我不明白。

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