我有一个实用程序类,其中包含一个带有一些值的静态最终映射。我需要在另一个班级访问这张地图。我应该只将地图声明为公共的,还是应该在实用程序类中编写一个 getter,从而让地图成为私有的?
两种方式都有效,但最佳做法是什么?
public MyUtilityClass {
public static final Map<String, Integer> MAX_LENGTHS = ImmutableMap.of(
"title", 256,
"text", 512);
}
public MyAnotherClass {
public void someMethod() {
//accessing the map directly
MAX_LENGTHS.get("title")
}
}
要么
public MyUtilityClass {
private static final Map<String, Integer> MAX_LENGTHS = ImmutableMap.of(
"title", 256,
"text", 512);
public static final getMaxLengthMap() {return MAX_LENGTHS;}
}
public MyAnotherClass {
public void someMethod() {
//accessing the map directly
getMaxLengthMap().get("title")
}
}
好吧,实际上键是枚举值。就像是 :
private static final Map<String, Integer> MAX_LENGTHS = ImmutableMap.of(
MyEnumClass.TITLE, 256,
MyEnumClass.TEXT, 512);
杨__羊羊
慕容森
有只小跳蛙
陪伴而非守候
侃侃无极
相关分类