码迷,mamicode.com
首页 > 其他好文 > 详细

内部类实现懒加载

时间:2014-10-19 17:15:38      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:on   new   as   return   class   public   c   private   实现   

public class Singleton{ private Singleton(){ … } private static class SingletonContainer{ private static Singleton instance = new Singleton(); } public static Singleton getInstance(){ return SingletonContainer.instance; } }

内部类实现懒加载

标签:on   new   as   return   class   public   c   private   实现   

原文地址:http://my.oschina.net/u/946001/blog/335102

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!