多选题 Given:
1. abstract class Vibrate {
2. static String s = "-";
3. Vibrate() {s += "v"; }
4. }
5. public class Echo extends Vibrate {
6. Echo() {this(7); s += "e"; }
7. Echo(int x) {s += "e2"; }
8. public static void main(String[] args) {
9. System.out.print("made " + s + " ");
10. }
11. static {
12. Echo e = new Echo();
13. System.out.print("block " + s + " ");
14. } }
What is the result?
【正确答案】 F
【答案解析】