C++和 CONST:如何在 FLAG 的 typedef 位置使用 UINT32 并使用 CONST FLAG 标志;结构内部?ong

发布于 2024-09-12 14:45:17 字数 354 浏览 6 评论 0原文

我是 C++ 编程新手。我正在分析代码,发现以下内容:

typedef unsigned short UINT16;
typedef unsigned long UINT32;
typedef UNIT16 FLAG;

//within a structure,
struct x
{
      const FLAG& flag; //what this means??
};

当我将 FLAG 数据类型更改为 UNIT32 时,然后 FLAG&我猜正在返回一些其他值。如果我使用 FLAG 而不是 FLAG&,那么它的行为正常。

请帮助我理解以上内容。

提前致谢。

I am new to C++ programming. I am analyzing a code and I found the following:

typedef unsigned short UINT16;
typedef unsigned long UINT32;
typedef UNIT16 FLAG;

//within a structure,
struct x
{
      const FLAG& flag; //what this means??
};

When I change the FLAG datatype to UNIT32, then FLAG& is returning some other value i guess. If i use FLAG instead of FLAG&, then it is behaving properly.

Please help me to understand the above.

Thanks in advance.

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

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

发布评论

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

评论(2

阪姬 2024-09-19 14:45:18

CONST 不是 C++ 的一部分,我猜它是某种宏。

FLAG & flag;

将创建对标志对象的引用。如果没有进一步的信息,就不可能确切地说出代码的含义/作用。

CONST is not part of C++, I would guess it is a macro of some kind.

FLAG & flag;

would create a reference to a flag object. Exactly what the code means/does is impossible to say without further information.

岛徒 2024-09-19 14:45:18

flag 是一个 const 成员,因此只能对其进行初始化,而不能对其进行赋值,除非涉及强制转换。您得到的结果取决于您初始化它的内容,但您不会显示。

flag 是一个引用(&),因此它不保留自己的值,而是保存来自其他地方的值。引用只是另一个变量的不同名称(或者可能是一个值,如果它是 const 引用)。例如,如果您使用名为 i 的变量来初始化它,那么它就是 i 的另一个名称。如果i的值改变,flag的值也会改变。 const 意味着 x 中的任何内容都不能直接修改它,而不是说该值不可能被修改。同样,由于没有有关您正在执行的初始化的信息,因此无法解释发生了什么。

您确实提到过 FLAGFLAG & 得到了不同的结果,这表明您正在使用变量对其进行初始化,然后该变量正在发生更改。考虑到更多背景,我们可以提供更多细节。

现在,如果您提供了实际的代码,则 UINT16UINT32 之间没有区别,因为您已将它们都定义为 unsigned Short >。行为上不应有任何差异。如果有,则意味着您提供的代码不仅不足以了解正在发生的情况,而且提供的代码与实际获取结果的代码不同。

flag is a const member, so that it can only be initialized, not assigned to, unless there's a cast involved. What results you get depend on what you initialize it with, which you do not show.

flag is a reference (the &), so it doesn't keep its own value, but rather holds a value from somewhere else. A reference is simply a different name for another variable (or possibly a value, if it's a const ref). If you initialize it with a variable called i, for example, then it's another name for i. If the value of i changes, the value of flag changes. The const means that nothing in x can modify it directly, not that the value can't possibly be modified. Again, given no information about the initialization you're doing, it's impossible to explain what's going on.

You did mention that you got different results with FLAG and FLAG &, which indicates that you are initializing it with a variable, and the variable is then getting changed. Given more context, we could provide more detail.

Now, if you've provided the actual code, there is no difference between UINT16 and UINT32, since you've defined them both as unsigned short. There should be no difference in behavior. If there is, it means that you're providing not only insufficient code to know what's going on, but different code than you're actually getting your results from.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文