blob: 8060763d86c5496e5a2ac6e7b39af5eba799d9b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package test1;
public class StaticConsBody {
public static int i;
public int j;
static {
i = 3;
}
public StaticConsBody() {
j = 2;
}
public int run() {
return i + j;
}
}
|