mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
288 B
Plaintext
15 lines
288 B
Plaintext
class Usage {
|
|
private Object wc1 = new Object() {
|
|
private int myInt = 8;
|
|
private String myString = "Sashya";
|
|
|
|
{
|
|
int i = 2;
|
|
i = 3;
|
|
myInt = i + 17;
|
|
int j = 4;
|
|
j = 5;
|
|
myString = "Sa".substring(j);
|
|
}
|
|
};
|
|
} |