下面程序运行后的输出结果为( ) class A { static int y = 6; void showy( ){ System.out.println(“y=”+y); } } class testA { public static void main(String aaa []) { A a1=new A( ); A.y+=1; a1.y++; a1.showy( ); } }
免费的网站请分享给朋友吧