gpt4 book ai didi

c - 在 main 中递增全局静态 int

转载 作者:太空宇宙 更新时间:2023-11-04 06:07:15 25 4
gpt4 key购买 nike

这是我的代码:

文件数据类型.h

static int count=0;

文件 TreeOps.h

#include"DataTypes.h"
void printTree(Tree* ptr)

文件 TreeOps.c

#include"TreeOps.h"
void printTree(pointer){
count++; // incrementing the count;
printf("%d",counter);
}

文件 TreeMain.c

#include"TreeOps.h"
printTree(pointer); // all the necessary declarations are done.
printf("%d",count);

如果在 printTree 函数中 printf 给出 count=1;而在 main 函数中它给了我 0。

为什么?

最佳答案

在此上下文中的静态变量意味着:每个 c 文件都有自己的变量实例。删除 h 文件中的静态定义:

extern int count;

并将其添加到其中一个 c 文件中:

int count = 0;

extern 的意思是:这是前向声明。通过将变量定义为 extern,您可以告诉编译器 count 具有 int 类型,并且该变量是在某处创建的。实际上,这个变量是在一个且只有一个 c 文件中创建的。您可以在任何包含 DataTypes.h 的 c 文件中使用它。在创建此变量的文件中,编译器使用它。在所有其他文件中,此变量成为外部引用,稍后由链接器解析。

关于c - 在 main 中递增全局静态 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7587745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com