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

创建一个羊类,使用static实现数羊,记录一共创建了几只羊

时间:2016-11-24 19:37:10      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:static

public class Test {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		//创建一个羊类,使用static实现数羊,记录一共创建了几只羊。
		Sheep.getCount();
		Sheep s1=new Sheep("喜羊羊");
		Sheep.getCount();
		Sheep s2=new Sheep("懒羊羊");
		Sheep.getCount();
		Sheep s3=new Sheep("美羊羊");
		Sheep.getCount();

	}
	
}
public class Sheep {
	private String name;
	private static int count=0;//计数器
	
	public Sheep(String name){
		this.name=name;
		count++;
	}
	
	//显示羊的数量
	public static void getCount(){
		System.out.println("现在羊的数量是:"+count);
	}

}


创建一个羊类,使用static实现数羊,记录一共创建了几只羊

标签:static

原文地址:http://12170190.blog.51cto.com/12160190/1876195

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