【多选题】如果有以下程序片段: class Some { Some() { this(10); System.out.println("Some()"); } Some(int x) { System.out.println("Some(int x)"); } } class Other extends Some { Other() { super(10); System.out.println("Othe...
A.
new Other()显示"Some(int x)"、"Other()"
B.
new Other(10)显示"Some()"、"Some(int x)"、"Other(int y)"