mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
246 B
Java
15 lines
246 B
Java
class A {
|
|
private int i;
|
|
private int j;
|
|
private int s;
|
|
|
|
public A(int i, int j) {
|
|
<selection>this.i = i;</selection>
|
|
this.j = j;
|
|
}
|
|
|
|
public A(int i, String s) {
|
|
this.i = i;
|
|
this.s = s;
|
|
}
|
|
} |