public class learnJ {
/**
* 作者:shuiyixin
* 日期:2018.01.28
* 内容:学习Java
* 一、类变量与实例变量:
* 1.加上static为类变量或者为静态变量,否则称之为实例变量。
* 2.类变量是与类相关的,公共的属性。
* 3.实例变量属于每一个对象个体的属性。
* 4.类变量可以通过类名,类变量名直接访问。
* 二、类方法(与类变量相似)
* 1.类方式属于与类相关的、公共的方法。
* 2.实例方法属于每个对象的个体的方法。
* 3.类方法可以通过类名,类方法名直接访问
*/
static class Person{
int age;
String name;
static int join ;//静态变量,公用 类变量
static int totalFee;
public Person(String name,int age,int fee){
this.name = name;
this.age = age;
totalFee += fee;
}
static{//静态区域块,只执行一次
System.out.println("调用 静态 模块");
}
public void joinGame(){
join++;
System.out.println("参与游戏的人数有:" + join);
System.out.println("新增的小朋友为:"+this.name);
}
public static int allFee(){//类方法,一般情况下,类变量用类方法去访问。
return totalFee;
}
};
public static void main(String []args){
Person P1 = new Person("xiaohuang",5,50);
P1.joinGame();
Person P2 = new Person("xiaohong",6,60);
P2.joinGame();
System.out.println(Person.allFee());
System.out.println("hello world...");
}
}