码迷,mamicode.com
首页 > 编程语言 > 详细

Java中“...”的使用

时间:2018-12-16 16:37:46      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:pack   意思   结果   test   ati   就是   ring   变长参数   com   

    该用法的意思是--可变长参数,就是说这个位置可以传入任意个该类型参数,简单来说就是个数组。

    示例:

    

package com.yzl.attachedtest;

public class PointsTest {

public static void testPoints(Integer... itgr){
if(itgr.length == 0){
System.out.println("没有integer参数传入");
}else if(itgr.length == 1){
System.out.println("1个integer参数传入");
}else{
System.out.println("传入的参数是:");
for(int i = 0;i < itgr.length;i++){
System.out.println("第" + (i+1) + "个参数是:" + itgr[i] + ";");
}
}
}

public static void main(String[] args) {
testPoints();
testPoints(7);
testPoints(7,9);
testPoints(new Integer[]{7,9,11});

}

}

输出的结果是:

没有integer参数传入
1个integer参数传入
传入的参数是:
第1个参数是:7;
第2个参数是:9;
传入的参数是:
第1个参数是:7;
第2个参数是:9;
第3个参数是:11;

Java中“...”的使用

标签:pack   意思   结果   test   ati   就是   ring   变长参数   com   

原文地址:https://www.cnblogs.com/abortre/p/10126845.html

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