C语言中的static关键字有以下几种作用:
void func() {
static int count = 0;
count++;
printf("count: %d\n", count);
}
int main() {
func(); // 输出: count: 1
func(); // 输出: count: 2
return 0;
}
// file1.c
static int count = 0;
// file2.c
extern int count; // 编译错误,无法访问file1.c中的count变量
// file1.c
static void func() {
printf("Hello, World!\n");
}
// file2.c
extern void func(); // 编译错误,无法调用file1.c中的func函数
int func() {
static int count = 0;
count++;
return count;
}
int main() {
printf("%d\n", func()); // 输出: 1
printf("%d\n", func()); // 输出: 2
return 0;
}