设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1498|回复: 1
打印 上一主题 下一主题

关于预编译的问题

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 00:51:29 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
//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.
麻烦大哥们帮我看一下.
2#
发表于 2009-11-4 00:51:30 | 只看该作者
你只声明了no_of_errors,而没有定义,更别提初始化了,//note: default initialized to 0,误导
在error.cpp或main.cpp中加上一个全局变量int no_of_errors=0;
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 21:24 , Processed in 0.106975 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表