新微赢技术网

标题: 关于预编译的问题 [打印本页]

作者: tp寶寶^ō^    时间: 2009-11-4 00:51
标题: 关于预编译的问题
//Error.h
#ifndef XXX_ERROR
#define XXX_ERROR
extern int no_of_errors; // note: default initialized to 0
#endif
double error(const char* s);
//Error.cpp
#include"Error.h"
#include<iostream>
double error(const char* s)
{
no_of_errors++;
std::cerr << "error: " << s << '\n';
return 1;
}
//main.cpp
#include<iostream>
#include"Error.h"
int main(int argc, char* argv[])
{
error("There is a Error!");
return no_of_errors;
}
这个程序错在那里?
出错信息:
Linking...
test.obj : error LNK2005: "int no_of_errors" (?no_of_errors@@3HA) already defined in Error.obj
Debug/Test.exe : fatal error LNK1169: one or more multiply defined symbols found
Error executing link.exe.
麻烦大哥们帮我看一下.
作者: 苍穹    时间: 2009-11-4 00:51
你只声明了no_of_errors,而没有定义,更别提初始化了,//note: default initialized to 0,误导
在error.cpp或main.cpp中加上一个全局变量int no_of_errors=0;




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2