static关键字的复习还是比较重要的,需要再次观看视频。
package oop.Demon7;
//static:
public class Student {
private static int age;//静态变量
private double score;//非静态变量
public void run() {
}
public static void go() {
}
public static void main(String[] args) {
new Student().run();
}
}
网友评论