“默认” 作为变量名

发布于 2024-07-16 07:38:59 字数 400 浏览 8 评论 0原文

在调试一些代码时,我遇到了一个名为 default 的数组。 我认为关键字不允许作为变量名。

#include "stdafx.h"
#include <stdio.h>

int main()
{
 int default = 5;
 printf("%d\n", default);
 return 0;
}

现在上面的代码可以在 VS 2008 上顺利编译。“default”不是一个关键字吗? 它为什么作为变量名起作用? 副作用?

PS: Infragistics::Win::UltraWinToolbars::ToolbarsCollection 有一个具有此名称的属性!

While debugging some code, I came across an array named default. I thought that keywords were not allowed as variable names.

#include "stdafx.h"
#include <stdio.h>

int main()
{
 int default = 5;
 printf("%d\n", default);
 return 0;
}

Now the above code compiles without a hitch on VS 2008. Isn't 'default' a keyword? How come it works as a variable name? Side-effects?

PS: Infragistics::Win::UltraWinToolbars::ToolbarsCollection has a property with this name!

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

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

发布评论

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

评论(1

ゝ杯具 2024-07-23 07:38:59

这是 VC++ 中的已知问题。 基本上是为 C++/CLI 兼容性而设计的。

It's a known issue in VC++. Basically by-design for C++/CLI compatibility.

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