我的构造函数是
public class Figure{
int[][] x;
Color y;
public Figure(int[][] x , Color y){
this.x=x;
this.y=y;
}
我正在通过以下方式初始化对象:
Figure s = new Figure({{0,1,1},{1,1,0}},Color.ORANGE);
收到以下错误:
类型不匹配 - 无法从 int[][] 转换为图形 令牌上的语法错误:错位的构造 应改为变量声明符