题目内容
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);//在控制台输出:}}
查看答案
搜索结果不匹配?点我反馈