码迷,mamicode.com
首页 > 其他好文 > 详细

fatal error LNK1169: 找到一个或多个多重定义的符号

时间:2018-01-02 19:55:37      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:编译   span   bsp   需要   turn   col   .cpp   自动   color   

在vs中,使用c时,由编译-链接,cpp之间是自动的,如:

1,头文件 x.h:

1  int f();

2,实现 impl.cpp:

1 #include "stdafx.h"
2 
3 int f() {
4     return 1;
5 }

3,在main(即user_extern.cpp)中(使用实现 impl.cpp不需要include  impl.cpp),只要include 包含  int f();的 头文件(即 x.h)

 1 // user_extern.cpp : 定义控制台应用程序的入口点。
 2 //
 3 
 4 #include "stdafx.h"
 5 #include "x.h"
 6 
 7 
 8 int _tmain(int argc, _TCHAR* argv[])
 9 {
10     int i= f();
11     printf("%d",i);
12     return 0;
13 }

 

fatal error LNK1169: 找到一个或多个多重定义的符号

标签:编译   span   bsp   需要   turn   col   .cpp   自动   color   

原文地址:https://www.cnblogs.com/listened/p/8178435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!