懒汉模式

public class AA { private AA s=null; private AA(){ } public AA eat(){ if(s==null){ s= new AA(); } return s; } }
相关文章
相关标签/搜索