4

我在名为的类中创建了一个静态成员数组GTAODV

static int numdetections[MAXNODES];

但是,当我尝试在类方法中访问这个数组时(下面的示例),

 numdetections[nb->nb_addr]++;
 for(int i=0; i<MAXNODES; i++) if (numdetections[i] != 0) printf("Number of detections of %d = %d\n", i, numdetections[i]);

链接器在编译过程中出错:

gtaodv/gtaodv.o: In function `GTAODV::command(int, char const* const*)':
gtaodv.cc:(.text+0xbe): undefined reference to `GTAODV::numdetections'
gtaodv.cc:(.text+0xcc): undefined reference to `GTAODV::numdetections'
gtaodv/gtaodv.o: In function `GTAODV::check_malicious(GTAODV_Neighbor*)':
gtaodv.cc:(.text+0x326c): undefined reference to `GTAODV::numdetections'
gtaodv.cc:(.text+0x3276): undefined reference to `GTAODV::numdetections'
collect2: ld returned 1 exit status

为什么会这样?

4

1 回答 1

16

发生此错误时,您很可能忘记定义静态成员。假设在您的类定义中:

class GTAODV {
public:
    static int numdetections[MAXNODES]; // static member declaration
    [...]
};

在一个源文件中:

int GTAODV::numdetections[] = {0}; // static member definition

注意类中声明之外的定义。

编辑这应该回答有关“为什么”的问题:静态成员可以在不存在具体对象的情况下存在,即您可以numdetections在不实例化任何对象的情况下使用GTAODV. 要启用此外部链接必须是可能的,因此必须存在静态变量的定义,以供参考:静态数据成员(仅限 C++)

于 2012-04-22T16:55:07.503 回答