Java單例的5中寫法

Java5種單例寫法。 public class Resource { /** * 直接初始化 * **/ private static Resource resource_static = new Resource(); public static Resource getResourceInstanceStatic(){ return resource_static; } /** *
相關文章
相關標籤/搜索