有没有办法使用数组而不实际将其分配给变量?例如
for (int numb: {1,2,3,4,5,6}){
System.out.println(number);
}
或者
public class TestArrays{
public static void doStuff(double[] doubles){
//doStuff
}
public static void main(String[] args){
doStuff({1,2,3,4,5,6,7});
}
}
因为当我现在尝试它时,我遇到编译问题,就好像编译器没有将实体识别为数组一样。