有没有办法分两步声明一个二维整数数组?我的范围有问题。这就是我想要做的:
//I know Java, so this is an example of what I am trying to replicate:
int Array[][];
Array = new int[10][10];
现在,在 OBJ-C 中,我想做类似的事情,但我无法正确使用语法。现在我一步一步完成了它,但我不能在我目前拥有它的 If 语句之外使用它:
int Array[10][10]; //This is based on an example I found online, but I need
//to define the size on a seperate line than the allocation
谁能帮我解决这个问题?我知道这可能是一个更基本的问题,但是您不能在消息之外使用关键字“new”(据我所知),并且您不能将消息发送到整数。:(
*编辑1:**
我的问题与范围有关。
//Declare Array Somehow
Array[][] //i know this isn't valid, but I need it without size
//if statement
if(condition)
Array[1][2]
else
Array[3][4]
//I need to access it outside of those IFs
//... later in code
Array[0][0] = 5;