标签:
使用...表示可变长参数,例如
print(String... args){
...
}
在具有可变长参数的方法中可以把参数当成数组使用,例如可以循环输出所有的参数值。
print(String... args){
for(String temp:args)
System.out.println(temp);
}
调用的时候可以给出任意多个参数,例如:
print("hello");
print("hello","李四");
print("hello","张三");
标签:
原文地址:http://www.cnblogs.com/lion88/p/4187917.html