mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 05:18:02 +07:00
GitOrigin-RevId: 776d18524b6ec5c4eeec7f7bd71c01b768370aca
18 lines
331 B
Plaintext
18 lines
331 B
Plaintext
import java.util.Arrays;
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
System.out.println(use());
|
|
}
|
|
|
|
public static String use() {
|
|
x("1", "2", "3");
|
|
return Arrays.toString(new String[]{"1", "2", "3"});
|
|
}
|
|
|
|
static void x(Object... os) {
|
|
for (Object o : os) {
|
|
System.out.println(o);
|
|
}
|
|
}
|
|
} |