摘要: 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 zhwj184 阅读(128) 评论(0) 推荐(0) 编辑