class MyTest { void processStrings(String... list) { System.out.println(list); } void test() { processStrings("", 1, "str", "s"); } }