安卓 单例设计模式
/**
* Created by ykh on 2016/2/19.
*/
public class User {
//加载类的时候会初始化static的instance,从这以后,这个static的instance对象便一直占着这段内存,永远不会被回收掉。
private static User instance = new User();
private User(){
super();
}
public static User getInstance(){
return instance;
}
}
按住ctrl 双击函数,可以打开函数定义