c语言中static如何修饰函数
1、静态函数只能在声明它的文件中可见,其他文件不能引用该函数。
2、不同的文件可以使用相同名字的静态函数,互不影响。
3、使用static声明的函数不能被另一个文件引用。
实例
/* file1.c */#include <stdio.h>
static void fun(void)
{
printf("hello from fun.\n");
}
int main(void)
{
fun();
fun1();
return 0;
}
/* file2.c */
#include <stdio.h>
static void fun1(void)
{
printf("hello from static fun1.\n");
}
/*
输出:
error:file1.c:(.text+0x20):对‘fun1’未定义的引用
collect2: error: ld returned 1 exit status
*/
以上就是c语言中static修饰函数的介绍,希望对大家有所帮助。更多C语言学习指路:C语言教程
本教程操作环境:windows7系统、C11版,DELL G3电脑。
以上是 c语言中static如何修饰函数 的全部内容, 来源链接: utcz.com/z/546239.html