摘要: package Demo07; public class Student { private static int age;//静态的变量 private double score;//非静态变量 public void run(){ go();//非静态的方法可以直接调用静态的方法 } publi 阅读全文