mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 20:49:52 +07:00
10 lines
171 B
Java
10 lines
171 B
Java
class C {
|
|
void method(final int anObject, String... s) {
|
|
System.out.println(s[anObject]);
|
|
}
|
|
|
|
{
|
|
method("a", "b", "c");
|
|
method();
|
|
}
|
|
} |