mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
273 B
Plaintext
15 lines
273 B
Plaintext
public class A {
|
|
|
|
public void test() {
|
|
int c = 0;
|
|
Runnable i = new Runnable() {
|
|
private final int c = 1;
|
|
|
|
public void run() {
|
|
System.out.println(c);
|
|
}
|
|
};
|
|
new Thread(i).start();
|
|
}
|
|
}
|