0

当我声明一个全局变量时,我得到了错误:

链接器命令失败,退出代码为 1(使用 -v 查看调用)

这是代码:

import "menuplay.h"

import "buttonmanager.h"

int  test; //<--------------when i  declare  it show  error Apple Mach-O Linker Error

@interface lessonone : CCLayer {
...
}
4

1 回答 1

1

将其声明为静态:

static int test;

或者 const 如果它的值永远不应该改变:

const int test = 10;
于 2013-03-16T16:02:24.200 回答