搜尋此網誌

2012年3月26日 星期一

Java Static Variable


public class StaticVariableTest {

public static void main(String []args){
Student s1 = new Student();
Student.height =1;
Student s2 = new Student();
Student.height =2;
System.out.println(Student.height);
}

}

class Student{
static int height;
}

沒有留言:

張貼留言