解决全球

发布于 2025-01-02 00:08:51 字数 380 浏览 1 评论 0原文

我试图让对象引用一些全局变量(在你开始攻击我使用全局变量之前,将它们放入一个对象中要么会使其无法被其他对象访问,要么需要在方法调用中添加多余的参数)例如

main.cpp

bool firstLoop;
const int dt = 10;

的事情.cpp

void thing::Update(Object * thingToUpdate){
    if( firstLoop){
        ...
    } else{
        // working with dt
    }
}

但每次我尝试访问变量时都会收到“未声明的标识符”错误 我需要将它们标记为外部或其他什么吗?

I am trying to get objects to reference a few globalized variables (before you start hitting me for using globals putting them into an object would either make it unreachable by other objects, or require adding excess arguments to method calls) for example

main.cpp

bool firstLoop;
const int dt = 10;

thing.cpp

void thing::Update(Object * thingToUpdate){
    if( firstLoop){
        ...
    } else{
        // working with dt
    }
}

but every time I try to access the variables I get a error of "undeclared identifier"
do I need to mark them as extern, or something else.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久而酒知 2025-01-09 00:08:51

thing.cpp 中,写入

extern bool firstLoop;

注意,同样的技巧不适用于 dt,因为它具有内部链接(因为它是内置类型的 const 变量)。

通常,您应该有一个头文件,在其中声明(使用extern)需要从任何地方访问的变量,以及另一个源文件< strong>定义这些变量。内置类型的常量变量应在头文件中定义,或者应通过 selfsame extern 显式地将它们的链接设为外部 > 关键字。那么头文件应该包含在需要访问的任何地方。例子:

//Globals.h

extern char ec;
extern const char ecc;
const char cc = 'a';

//Globals.cpp
char ec /* = 'b'*/;
extern const char ecc = 'b';
//no need to do anything with cc

In thing.cpp, write

extern bool firstLoop;

Note that the same trick will not work for dt because it has internal linkage(because it's a const variable of built-in type).

Usually, you should have one header file where you declare(with extern) your variables that need access from everywhere, and another source file which defines these variables. The constant variables of built-in type should be defined in the header file, or their linkage should be explicitly made external by means of the selfsame extern keyword. Then the header file should be included everywhere where access is needed. Example:

//Globals.h

extern char ec;
extern const char ecc;
const char cc = 'a';

//Globals.cpp
char ec /* = 'b'*/;
extern const char ecc = 'b';
//no need to do anything with cc
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文