30

可能重复:
C++:对静态类成员的未定义引用

我正在使用 MinGW。为什么静态变量不起作用

[Linker error] undefined reference to `A::i' 

#include <windows.h>

    class A { 
        public:     
        static int i;
        static int init(){

            i = 1;  

        }

    };

int WINAPI WinMain (HINSTANCE hThisInstance,
                    HINSTANCE hPrevInstance,
                    LPSTR lpszArgument,
                    int nFunsterStil){
    A::i = 0;
    A::init();

    return 0;
}
4

2 回答 2

47

你只声明A::i了,使用前需要定义A::i

class A  
{ 
public:     
  static int i;
  static void init(){
     i = 1;  
  }
 };

int A::i = 0;

int WINAPI WinMain (HINSTANCE hThisInstance,
                HINSTANCE hPrevInstance,
                LPSTR lpszArgument,
                int nFunsterStil)
{
  A::i = 0;
  A::init();

  return 0;
}

此外,您的 init() 函数应该返回一个值或设置为 void。

于 2013-01-15T05:04:49.003 回答
18

你已经A::i在你的类中声明了,但你还没有定义它。您必须在之后添加定义class A

class A {
public:
    static int i;
    ...
};

int A::i;
于 2013-01-15T05:07:47.840 回答