public class Set {
private int[] num;
public Set(int ... nums){
this.num = nums;
}
public int getSet(){
for (int results : this.num){
return results;
}
}
}
我写了这个类作为测试,看看尝试使用一种方法输出一个整数数组,但我遇到了麻烦
这是驱动程序:
public class SetTest {
public static void main(String[] args) {
Set set = new Set();
set.Set(1,2,3);
set.getSet();
}
}
我不知道该怎么做,我也收到此错误“方法 IntegerSet(int, int, int) 未定义 Set 类型”