mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
19 lines
270 B
Java
19 lines
270 B
Java
class A {
|
|
private int i;
|
|
private int j;
|
|
private int s;
|
|
|
|
public A(int i, int j) {
|
|
this(i);
|
|
this.j = j;
|
|
}
|
|
|
|
private A(int i) {
|
|
this.i = i;
|
|
}
|
|
|
|
public A(int i, String s) {
|
|
this.s = s;
|
|
this.i = i;
|
|
}
|
|
} |