好的,所以这是在黑暗中拍摄,但是......有没有办法重载多维数组访问的参数以接受自定义参数?
//normal array access
myArray[1][2];
//I have a class with two ints and do this
myArray[int2Var.x][int2Var.y];
//is there any way to overload the array arguments so I can do this to access a two dimensional array?
myArray[int2Var];
我目前正在使用 Java,但我也想知道这是否可能。