Java语言支持的变量类型有:
- 类变量:独立于方法之外的变量,用 static 修饰。
- 实例变量:独立于方法之外的变量,不过没有 static 修饰。
- 局部变量:类的方法中的变量
public calls Student{
    static String schoolName ="清华小学"; //类变量
    String classNane ="中班";  //实例变量
    public void show(){
        /*局部变量*/
        int age =7;
        String name ="张华";
    }
}				