“Undefined reference” to declared C++ static member variable [duplicate]

青春壹個敷衍的年華 提交于 2020-12-12 06:17:12

问题


I have started programming with Java, I just achieved which I consider as a "good" level in matter of language knowledge.

For fun I decided to start programming using C++, I'm fairly new to this language but I'm a fast learner and I think it's not that far from Java.

I've created a test class which has a value and a name as attributes, and an objects counter as a global variable.

 #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;
}

When executed the programm outputs this error :

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

some chinese to me.

I don't get it.


回答1:


In C++, static variables are essentially syntactic sugar around global variables. Just like global variables, they must be defined in exactly one source file, with:

int Test::nb;

and if you want to initialize it with a particular value,

int Test::nb = 5; // or some other expression



回答2:


Your variable static int nb needs to be initialized so you need to add a declaration after the class.

class YourClass 
{
    // some stuff
}; //  Your class ends here
int Test::nb = 0;

int main() ...

Here's some tutorials and info tutorial point, cprogramming.com/tutorial/statickeyword



来源:https://stackoverflow.com/questions/35565971/undefined-reference-to-declared-c-static-member-variable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!