两个文件1.c和2.c
1.c中的f1()为非static时,2.c只要申明一下就可调用了
//------1.c-------
void f1()
{
}
//--end of 1.c---
//------2.c-------
externvoid f1();
void f2()
{
f1();
}
//--end of 2.c---
void f1()
{
}
//--end of 1.c---
//------2.c-------
externvoid f1();
void f2()
{
f1();
}
//--end of 2.c---
当1.c中的f1()为static时,2.c只要需要增加
#include"1.c"
这样才能调用1.c中的f1()。关于这点,一些教材只是一味强调static函数只能在当前文件中调用,不能被其他文件中的函数调用,这样描述似乎不是很准确。下面是完整的代码。
//------1.c-------
staticvoid f1()
{
}
//--end of 1.c---
//------2.c-------
#include"1.c"
void f2()
{
f1();
}
//--end of 2.c---
staticvoid f1()
{
}
//--end of 1.c---
//------2.c-------
#include"1.c"
void f2()
{
f1();
}
//--end of 2.c---
static变量也是如此,就不在敲字了。
此外,static关键字可以防止重复定义,static函数/变量只有一份。如果是使用extern关键字,则会出现拷贝的现象。