变量定义中关键字的顺序重要吗?
顺序:
public static final String = "something";
或
public final static String = "something";
之间有什么区别吗?
Is there any difference between the order:
public static final String = "something";
or
public final static String = "something";
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,尽管 Java 语言规范建议您使用第一种排序:
No, although the Java Language Specification recommends that you use the first ordering:
不 - 两者之间没有区别。
Java 2 语言规范第 8.3.1 节中:
No - there is no difference betweeen the two.
From section 8.3.1 of the Java 2 Language Specification:
不。选择一个并始终遵循该命名约定
No. Pick one and follow that naming convention consistently