我有一个常量类,我试图在运行时使用 public static final String 设置一个批号常量。我的 IDE 给了我一个警告“静态方法声明为 final”,我想知道我是否做错了什么。
file 从 Spring yml 文件中获取值。
私有字符串文件;(xxx-12345.txt)
public String getBatchNo() {
return parseBatchNo(file);
}
public static final String parseBatchNo(String file) {
return file.substring((file.lastIndexOf("-") + 1), (file.length() - 4));
}
肥皂起泡泡
qq_花开花谢_0
偶然的你
相关分类