-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathStatementsBeforeSuperInnerClassExamples.java
84 lines (68 loc) · 1.44 KB
/
StatementsBeforeSuperInnerClassExamples.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
* To run: `java --enable-preview --source 22 StatementsBeforeSuperInnerClassExamples.java`
*/
public class StatementsBeforeSuperInnerClassExamples {
public static void main(String[] args) {
var e1 = new Example1();
var i1 = e1.new Inner1();
var e2 = new Example2();
var e3 = Example3.VALUE_3;
}
}
class Base {
Base() {
System.out.println("Base constructor");
}
}
class Example1 {
private int counter;
void hello() {
System.out.println("Hello from Example1");
}
class Inner1 extends Base {
Inner1() {
// allowed cause when a new instance is created, the outer already exists
Example1.this.counter++;
hello();
super();
System.out.println("Inner1 constructor");
}
}
Example1() {
// Error: cannot reference this before supertype constructor has been called
// new Inner1();
super();
}
}
class Example2 {
static class Inner2 extends Base {
Inner2() {
System.out.println("Inner2 constructor");
}
}
Example2() {
System.out.println("Example2 constructor");
new Inner2();
super();
}
}
enum Example3 {
VALUE_1(1), VALUE_2(2), VALUE_3(3);
private final int value;
private final int valueSquared;
Example3(int v, int vSquared) {
System.out.printf("Enum - %d ^ 2 = %d%n", v, vSquared);
this.value = v;
this.valueSquared = vSquared;
}
Example3(int v) {
var vv = v * v;
this(v, vv);
}
public int getValue() {
return value;
}
public int getValueSquared() {
return valueSquared;
}
}