雕刻时光

just do it……nothing impossible
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

方法里面不限定参数

Posted on 2015-09-30 17:36  huhuuu  阅读(209)  评论(0编辑  收藏  举报
public class Test2 {

    public static void transUrlAlter(String... books) {

        for (String asd : books) {
            System.out.println(asd);
        }

    }

    public static void main(String[] args) {
        transUrlAlter("234", "21345", "qwert");

    }

}