如何在 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

更新时间:2019 年 7 月 30 日

623 次浏览

开始你的 职业生涯

通过完成课程获得认证

开始
广告