1 package test5; 2 3 public class VarArgsMethod { foo(String... a)4 public void foo(String... a) {} bar(String s)5 public void bar(String s) {} 6 } 7