常量类定义

在项目中经常用到的常量类的定义方法 有 interface emun class 等

下面说一下 常量类的定义方法:

  1. final 修饰类名 不可继承
  2. 定义了一个私有的构造函数,避免实例化该类;
  3. public static fianl 修饰变量
public final class ReturnCode {
  private ReturnCode() {
	}
	public static final String SUCCESS = "200";  //成功
	public static final String ERROE = "error"; //失败
}

调用常量>引入该类>直接使用

posted @ 2021-09-17 12:48  爱我的幸运  阅读(265)  评论(0)    收藏  举报