为什么.h文件中只能申明不能定义全局变量

最近使用keil编写下位机单片机程序,打算进行模块化的设计,遇到了在.h文件中定义全局变量报错的问题。

原因:

    因为C语言的include是直接将文件嵌入到include这个地方的.如果多次包含这个头文件,就存在多次创建变量的问题。

解决办法:

    在头文件中申明全局变量,在对应的.c文件中定义该全局变量,其他文件访问时候就不会报错了。

为此写了一段测试代码:

my.h

#ifndef __my_h__
#define __my_h__


extern void my_printf(char *s);
extern char ch;
#ifndef MAX
#define MAX 255
#endif // MAX



#endif

my.c

#include "my.h"
#include "stdio.h"
char ch='A';


void my_printf(char *s)
{
  puts("");
  printf("my string is :%s,my MAX is +%d",s,MAX);



}

main.c

#include 
#include 
#include "my.h"
int main(){
    putchar(ch);
    my_printf("test my_printf");
    printf("\n %d\n",MAX);
    return 0;

}

运行结果

为什么.h文件中只能申明不能定义全局变量_第1张图片

你可能感兴趣的:(51单片机)