1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package pkg; public static class Extension { public static String newTest(String s) { return s; } public static String test(String s, int i) { return s; } public static String test(String s, String... s2) { return s; } }