java 单例的实际应用

一、 编写单例类 public class VoteEmployeeCache { private VoteEmployeeCache() {} private static VoteEmployeeCache singleton = new VoteEmployeeCache(); public static VoteEmployeeCache getInstance() { return si
相关文章
相关标签/搜索