package Demo07;
public class Student {
private static int age;//静态的变量
private double score;//非静态变量
public void run(){
go();//非静态的方法可以直接调用静态的方法
}
public static void go(){
}
public static void main(String[] args) {
new Student().run(); //静态方法可以调用静态方法,但是不能直接调用非静态的方法
Student.go();
}
}
/*Student s1 = new Student();
System.out.println(Student.age);//类名调用静态的变量
System.out.println(s1.score);//通过对象调用变量
System.out.println(s1.age);//通过对象调用变量/