Java中...的作用
Posted yyywh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中...的作用相关的知识,希望对你有一定的参考价值。
Java中...的作用,代表接收若干个相同类型的参数
public void testFunction(int...arr) //接收若干个int类型的参数
for (int i:arr)
System.out.println(i+" ");
@Test
public void findByCategoryTypeIn()
testFunction(1,2,3,4,6,7);
结果:
1
2
3
4
6
7
以上是关于Java中...的作用的主要内容,如果未能解决你的问题,请参考以下文章