用 修饰的类叫抽象类。抽象类只能被继承,不能被实例化。用 修饰的类叫最终类,只能被实例化,不能被继承。
查看答案
Java的基础类库在包中,是Java默认引入的包。
public class StaticTest{static int score=100;int flag=10;public static void main(String args[]){StaticTest t1=new StaticTest();StaticTest t2=new StaticTest();StaticTest t3=new StaticTest();StaticTest t4=new StaticTest();System.out.println(t1.score); //在控制台输出:System.out.println(t1.flag);//在控制台输出:t1.score=1000;t1.flag=888;System.out.println(t4.score);//在控制台输出:System.out.println(t4.flag);//在控制台输出:}}