97免费在线观看视频,亚洲综合自拍网,黄色毛片免费观看,热久久综合网,免费看日产一区二区三区 狠狠操av,久久久涩涩涩,在线精品免费视频,人人插天天干,久久91精品国产91久久

單項選擇題

class Parent {    
String one, two; 
public Parent(String a, String b){    
one = a;    
two = b;    } 
public void print(){ System.out.println(one); }    } 
public class Child extends Parent {    
public Child(String a, String b){    
super(a,b);    
} 
public void print(){ 
System.out.println(one + " to " + two);    
} 
public static void main(String arg[]){   
 Parent p = new Parent("south", "north");    
Parent t = new Child("east", "west");    
p.print();    
t.print();    
}    
} 
Which of the following is correct?()

A. Cause error during compilation. 
B. south         east 
C. south to north     east to west    
D. south to north      east    
E. south     east to west

微信掃碼免費搜題