不使用java关键字的目的是什么?
正如 oracle 指出的,const 是 java 中的关键字。但它未使用。那么为什么会这样,const作为java中未使用的关键字有什么用呢? (goto也是如此)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
正如 oracle 指出的,const 是 java 中的关键字。但它未使用。那么为什么会这样,const作为java中未使用的关键字有什么用呢? (goto也是如此)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
来自 Java 语言规范:
(我想,这个措辞已经出现在第一版中了。)
From the Java Language Specification:
(This wording already was in the first edition, I think.)
保留以供将来使用。
这样,如果将来需要该关键字,则不会有源代码使用它们,并且不会破坏任何代码。
例如,如果 java 将单词
in
保留为保留,则 增强型 for 循环 可以写成:但既然不是这样,我们就有:
相反(我认为这更好)
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:But since it wasn't we have:
Instead ( which I think is nicer btw )
有时,单词会被保留以供将来使用。这里最有可能就是这种情况。
Sometimes words are reserved for future purposes. That's most likely the case here.