java新建对象什么时候需要new什么时候不需要
2015-03-02
展开全部
举个例子给你 class Test { static int tot=0; //构照方法声明为私有权限,限制别的类不能够同构构照方法创建该类的对象 private Test() { } //要创建该类的对象只能通过这个方法,此类只能创建10对象 Test newTest() { Test.tot++; if(Test.tot>=10) { return null; } return new Test(); } }
补充:
//补充下;这个方法必须为static public static Test newTest() { tot++; if(tot>=10) { return null; } return new Test(); }
补充:
//补充下;这个方法必须为static public static Test newTest() { tot++; if(tot>=10) { return null; } return new Test(); }
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询