- 1、本文档共4页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
防止变量重复定义;头文件重复包含、嵌套包含
test-1.0使用#ifndef只是防止了头文件被重复包含(其实本例中只有一个头件,不会存在重复包含的问题),但是无法防止变量被重复定义。# vi test.c-------------------------------#include stdio.h#include test.hextern i;extern void test1();extern void test2();int main(){?? test1();?? printf(ok\n);?? test2();?? printf(%d\n,i);?? return 0;}# vi test.h-------------------------------#ifndef _TEST_H_#define _TEST_H_char add1[] = \n;char add2[] = \n;int i = 10;void test1();void test2();#endif# vi test1.c-------------------------------#include stdio.h#include test.hextern char add1[];void test1(){?? printf(add1);}# vi test2.c-------------------------------#include stdio.h#include test.hextern char add2[];extern i;void test2(){?? printf(add2);?? for (; i 0; i--)??? ??? printf(%d-, i);}# Makefile-------------------------------test:??? test.o test1.o test2.otest1.o: test1.ctest2.o: test2.cclean:?? rm test test.o test1.o test2.o错误:test-1.0编译后会出现multiple definition of错误。错误分析:由于工程中的每个.c文件都是独立的解释的,即使头文件有#ifndef _TEST_H_#define _TEST_H_....#enfif在其他文件中只要包含了global.h就会独立的解释,然后每个.c文件生成独立的标示符。在编译器链接时,就会将工程中所有的符号整合在一起,由于文件中有重名变量,于是就出现了重复定义的错误。解决方法在.c文件中声明变量,然后建一个头文件(.h文件)在所有的变量声明前加上extern,注意这里不要对变量进行的初始化。然后在其他需要使用全局变量的.c文件中包含.h文件。编译器会为.c生成目标文件,然后链接时,如果该.c文件使用了全局变量,链接器就会??接到此.c文件?。test-2.0# vi test.c-------------------------------#include stdio.h#include test.hint i = 10;char add1[] = \n;char add2[] = \n;extern void test1();extern void test2();int main(){?? test1();?? printf(ok\n);?? test2();?? printf(%d\n,i);?? return 0;}# vi test.h-------------------------------#ifndef _TEST_H_#define _TEST_H_extern i;extern char add1[];extern char add2[];void test1();void test2();#endif# vi test1.c-------------------------------#include stdio.h#include test.hvoid test1(){?? printf(add1);}# vi test2.c-------------------------------#include stdio.h#include test.hvoid test2(){?? printf(add2);
文档评论(0)