摘要: public class javaTest { public static void test(String ...strings){ for(String str: strings){ System.out.print(str + " "); } System.out.println(); } public static void main(String[] args){ test("a", "b", "c", "ddd"); test("a"); test("a 阅读全文
posted @ 2010-01-11 15:48 MXi4oyu 阅读(138) 评论(0) 推荐(0) 编辑