静态变量和函数用法

时间:2011-05-31 21:33:22

标签: c++ static-variables static-functions

我有以下类定义和main()。有人可以指出我为什么会收到错误吗?

#include <iostream>
#include <list>
using namespace std;

class test
{
protected:
  static list<int> a;
public:
  test()
  {
    a.push_back(150);
  }
  static void send(int c)
  {
    if (c==1)
      cout<<a.front()<<endl;
  }
};

int main()
{
  test c;
  test::send(1);
  return 0;
}

我得到的错误如下:

/tmp/ccre4um4.o: In function `test::test()':
test_static.cpp:(.text._ZN4testC1Ev[test::test()]+0x1b): undefined reference to `test::a'
/tmp/ccre4um4.o: In function `test::send(int)':
test_static.cpp:(.text._ZN4test4sendEi[test::send(int)]+0x12): undefined reference to `test::a'
collect2: ld returned 1 exit status

即使我使用c.send(1)而不是test :: send(1),错误也是一样的。在此先感谢您的帮助。

2 个答案:

答案 0 :(得分:6)

您已宣布 test::a,但您尚未定义。在命名空间范围中添加定义:

list<int> test::a;

答案 1 :(得分:1)