多参数

Posted on 2009-09-27 16:07 追梦人 阅读(133) 评论(0)  编辑  收藏 所属分类: Other
jdk5中一个好用的写法:
方法多参数 String... args; Object... args都可以
public static void myMethod(String... args){
        for( String s : args ){
         System.out.println(s+" nice method");
        }
 }
 
 public static void main(String[] args) {
  myMethod("shot", "needheadshot");
 }

只有注册用户登录后才能发表评论。


网站导航: