我试图将值作为参数直接发送到我的数组,但它不起作用



如果我在另一个数组中初始化这些值,然后将其传递给主函数,它就可以工作。是我做错了什么,还是我们不能直接传递值?这是两个代码:- 使用数组传递:-

public class DDArray {
void array(int[][] a){
int x=a.length;
int y=a[0].length;
for(int i=0;i<x;i++){
for(int j=0;j<y;j++){
System.out.print(a[i][j] + " ");
}
System.out.println();
}
}
public static void main(String args[]){
DDArray ob=new DDArray();
int[][] b={{1,2,3,4,5},{11,22,33,44,55}};
ob.array(b);
}
}

直接通过:-

public class DDArray {
void array(int[][] a){
int x=a.length;
int y=a[0].length;
for(int i=0;i<x;i++){
for(int j=0;j<y;j++){
System.out.print(a[i][j] + " ");
}
System.out.println();
}
}
public static void main(String args[]){
DDArray ob=new DDArray();
ob.array({{1,2,3,4,5},{11,22,33,44,55}});
}
}

直接调用的变化 ob.array({{1,2,3,4,5},{11,22,33,44,55}}(; 自 ob.array(new int[][]{ { 1, 2, 3, 4, 5 }, { 11, 22, 33, 44, 55 } }(;

要回答您的问题,您不能直接传递这样的值。编译器会抱怨同样的情况。编译器错误在这里非常简单 -这里不允许数组初始值设定项。

相关内容

  • 没有找到相关文章

最新更新