如何在 Java 中编写常量名称?
在编写常量名称时建议
- 使用大写字母。
- 如果常量包含多个单词,则应使用下划线 (_) 分隔。
示例
public class ConstantsTest { public static final int MIN_VALUE = 22; public static final int MAX_VALUE = 222; public static void main(String args[]) { System.out.println("Value of the constant MIN_VALUE: "+MIN_VALUE); System.out.println("Value of the constant MAX_VALUE: "+MAX_VALUE); } }
输出
Value of the constant MIN_VALUE: 22 Value of the constant MAX_VALUE: 222
广告