- 论坛徽章:
- 0
|
不明白为什么编译的时候会说重复定义.
help~~~
文件如下:
//主文件:static_main.cpp,调用static.h中的A类
#include "static.h"
int main()
{
A::Init();
//cout<<A::IsInit()<<endl;
return 0;
}
//static.cpp文件
#include "static.h"
//static.h文件
#ifndef __STATIC_H
#define __STATIC_H
#include <iostream>
using namespace std;
class A
{
public:
static int id;//定义
static void Init()//定义
{
bInit=true;
}
private:
static bool bInit;
};
int A::id=9;//初始化
bool A::bInit=false;//初始化
#endif
Make方法
g++ -c static.cpp && g++ -c static_main.cpp && g++ static.o static_main.o -o a.out
错误提示
static_main.o(.data+0x0): multiple definition of `A::id'
static.o(.data+0x0): first defined here
static_main.o(.data+0x4): multiple definition of `A::bInit'
static.o(.data+0x4): first defined here
collect2: ld returned 1 exit status
[ 本帖最后由 山外山 于 2007-6-13 15:32 编辑 ] |
|