常量类定义
在项目中经常用到的常量类的定义方法 有 interface emun class 等
下面说一下 常量类的定义方法:
- final 修饰类名 不可继承
- 定义了一个私有的构造函数,避免实例化该类;
- public static fianl 修饰变量
public final class ReturnCode {
private ReturnCode() {
}
public static final String SUCCESS = "200"; //成功
public static final String ERROE = "error"; //失败
}
调用常量>引入该类>直接使用

浙公网安备 33010602011771号