Chinaunix首页 | 论坛 | 博客
  • 博客访问: 473005
  • 博文数量: 98
  • 博客积分: 3265
  • 博客等级: 中校
  • 技术积分: 1227
  • 用 户 组: 普通用户
  • 注册时间: 2010-10-23 00:29
文章分类

全部博文(98)

文章存档

2012年(6)

2011年(83)

2010年(9)

分类: C/C++

2011-03-13 22:47:34



一个头文件被多个C文件引用,方法如下:
头文件的写法如下:
------------------------------------
#ifndef _HEADNAME_         |
#define _HEADNAME_        |
        |
|
头文件的内容 |
|
|
#endif |
--------------------------------


如果头文件中包含变量,函数,则应该在这些变量,函数前加上extern,并且只能对其进行申明,不能初始化。而各个变量,函数应在相应的C文件中有定义


--------------------------------------------------------
头文件里面可以包含:       |
#define pi 3.14 //define类       |
extern char ch; //变量类申明       |
extern void getword(void); //函数类申明 |
void getword(void)       |
{       |
......... //函数类的定义       |
}       |
----------------------------------------------------------


main函数中调用多个模块的C文件:
1,可以使用include将其包含进来(不推荐),这样的话要把需要包含的.C命名为.H
2,在被调用的模块的C文件,将其里面的函数都用一个总的函数进行申明(即调用)
main函数中只需调用那个总的函数调用就可以了。

对于各个独立的模块C文件,应保证其完整性,即有必要的话,应包含必要的头文件,
不应认为main函数中包含过就可以了



test-1.0使用#ifndef只是防止了头文件被重复包含(其实本例中只有一个头件,不会存在重复包含的问题),但是无法防止变量被重复定义

# vi test.c
-------------------------------
#include
#include "test.h"

extern 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
#include "test.h"

extern char add1[];

void test1()
{
   printf(add1);
}



# vi test2.c
-------------------------------
#include
#include "test.h"

extern char add2[];
extern i;

void test2()
{
   printf(add2);
   for (; i > 0; i--) 
       printf("%d-", i);
}



# Makefile
-------------------------------
test:    test.o test1.o test2.o
test1.o: test1.c
test2.o: test2.c
clean:
   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
#include "test.h"

int 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
#include "test.h"

void test1()
{
   printf(add1);
}


# vi test2.c
-------------------------------
#include
#include "test.h"

void test2()
{
   printf(add2);
   for (; i > 0; i--) 
       printf("%d-", i);
}



阅读(1677) | 评论(0) | 转发(0) |
0

上一篇:MICRO2440 串口学习

下一篇:MICRO2440 PWM学习

给主人留下些什么吧!~~