转自:
下文笔者讲述java中参数经常看见的三个点的简介说明,如下所示:
三个点功能简介: java参数中三个点代表:“参数可以使用数组”的方式进行传入
例:
package com.java265.other; public class Test11 { /** * java265.com 示例演示 */ public static void main(String[] args) { testFun("a", "b", "c"); testFun("a2", "b2", "c2"); } /** * 三个点参数说明 */ public static void testFun(String... arrs) { for (int i = 0; i < arrs.length; i++) { System.out.println(arrs[i]); } } } ------运行以上代码,将输出以下信息----- a b c a2 b2 c2