博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java可变参数列表
阅读量:5251 次
发布时间:2019-06-14

本文共 939 字,大约阅读时间需要 3 分钟。

 

1 public class Test { 2     static void list(Integer[] i) { 3         for (Integer q : i) { 4             System.out.print(q + "*"); 5         } 6         System.out.println(); 7     } 8     static void list(String...args){ 9         for (String q : args) {10             System.out.print(q + "*");11         }12         System.out.println();13     }14     static void list(Integer a,String...args){     //添加不可变参数,防止方法调用矛盾15         System.out.print(a+"*");16         for (String q : args) {17             System.out.print(q + "*");18         }19         System.out.println();20     }21     public static void main(String[] args) {22 23         Integer[] in = new Integer[] { 1, 2, 3, 4, 5, 1, 7, 100 +'a'};    //可变参数24         list(in);25         list();26         list("ff","ds","df","h","hgg");27         list(2,"rtr","er","tr","we");28         29     }30 }

                                       附图:输出结果

转载于:https://www.cnblogs.com/huanglibin/archive/2012/11/08/2760470.html

你可能感兴趣的文章
Leetcode 92. Reverse Linked List II
查看>>
windown快速安装xgboost
查看>>
Linux上安装Libssh2
查看>>
九.python面向对象(双下方法内置方法)
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
LeetCode(17) - Letter Combinations of a Phone Number
查看>>
Linux查找命令对比(find、locate、whereis、which、type、grep)
查看>>
路由器外接硬盘做nas可行吗?
查看>>
python:从迭代器,到生成器,再到协程的示例代码
查看>>
Java多线程系列——原子类的实现(CAS算法)
查看>>
在Ubuntu下配置Apache多域名服务器
查看>>
多线程《三》进程与线程的区别
查看>>
linux sed命令
查看>>
html标签的嵌套规则
查看>>
[Source] Machine Learning Gathering/Surveys
查看>>
HTML <select> 标签
查看>>
类加载机制
查看>>
tju 1782. The jackpot
查看>>
HTML5与CSS3基础(五)
查看>>