不使用java关键字的目的是什么?

发布于 2024-10-17 01:55:07 字数 247 浏览 2 评论 0 原文

正如 oracle 指出的,const 是 java 中的关键字。但它未使用。那么为什么会这样,const作为java中未使用的关键字有什么用呢? (goto也是如此)

As oracle states, const is a keyword in java. But it is not used. So why is it so and what's the use of const being a non used keyword in java? (the same goes for goto)

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

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

发布评论

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

评论(3

握住你手 2024-10-24 01:55:07

来自 Java 语言规范

关键字 constgoto 被保留,即使它们当前未被使用。
如果这些 C++ 关键字,这可能允许 Java 编译器生成更好的错误消息
错误地出现在程序中。

(我想,这个措辞已经出现在第一版中了。)

From the Java Language Specification:

The keywords const and goto are reserved, even though they are not currently used.
This may allow a Java compiler to produce better error messages if these C++ keywords
incorrectly appear in programs.

(This wording already was in the first edition, I think.)

涙—继续流 2024-10-24 01:55:07

保留以供将来使用。

这样,如果将来需要该关键字,则不会有源代码使用它们,并且不会破坏任何代码。

例如,如果 java 将单词 in 保留为保留,则 增强型 for 循环 可以写成:

for( int i in someInts ) { 
}

但既然不是这样,我们就有:

for( int i : someInts ) { 
}

相反(我认为这更好)

To reserved for future usages.

This way, if that keyword is needed in the future, there won't be source code using them, and no code would be break.

For instance, have java had the word in as reserved, the enhanced for loop introducen in Java 5 could have been written as:

for( int i in someInts ) { 
}

But since it wasn't we have:

for( int i : someInts ) { 
}

Instead ( which I think is nicer btw )

み青杉依旧 2024-10-24 01:55:07

有时,单词会被保留以供将来使用。这里最有可能就是这种情况。

Sometimes words are reserved for future purposes. That's most likely the case here.

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