protected static final Set<String> RESULT_TRUE = new HashSet<String>(){{
add("正常");
add("是");
add("有");
}};
或者
protected static final Set<String> RESULT_TRUE = new HashSet<String>();
RESULT_TRUE.add(“正常”);
RESULT_TRUE.add(“有”);java 静态初始化集合
最新推荐文章于 2025-09-28 21:03:24 发布
691

被折叠的 条评论
为什么被折叠?



