代码
提交代码
public class VariableParameter1 { public void search(int element, int... elements) { boolean existed = false; for (int e: elements) { if (e == element) { existed = true; break; } } if (existed) { System.out.println("找到元素:" + element); } else { System.out.println("未找到元素:" + element); } } public static void main(String[] args) { // 创建对象 VariableParameter1 obj = new VariableParameter1(); // 调用方法 obj.search(2, 1,2,3,4); // 定义数组参数 int[] arr = {1,2,3,4}; // 将数组传递给可变参数列表 obj.search(2, arr); } }
运行结果