码迷,mamicode.com
首页 > 其他好文 > 详细

关于 method (Object ... params )

时间:2014-09-09 16:26:09      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   使用   ar   for   sp   on   c   

  1. class  Hello{  
  2.   
  3.     public static void generalUse(int []args){  
  4.         for (int i = 0;i < args.length ; i++ ){  
  5.                 System.out.println(args[i]);  
  6.         }  
  7.     }  
  8.   
  9.     public static void newBehaviour(int... args){  
  10.         for (int i = 0;i < args.length ; i++ ){  
  11.                 System.out.println(args[i]);  
  12.         }  
  13.     }  
  14.       
  15.     public static void main(String[] args) {  
  16.         //int[] a = {};  
  17.         //test1   
  18.         generalUse();   //不能通过编译,  
  19.         newBehaviour();  
  20.   
  21.     }  
  22. }  
  23.  通过测试看到,当参数为(int... arg) 与传统的(int [] args) 在调用时,但不传入参数时,

    传统的使用将不能通过编译:


关于 method (Object ... params )

标签:style   color   io   使用   ar   for   sp   on   c   

原文地址:http://my.oschina.net/nly/blog/311694

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!