2つのステップで整数の2D配列を宣言する方法はありますか?スコープに問題があります。これが私がやろうとしていることです:
//I know Java, so this is an example of what I am trying to replicate:
int Array[][];
Array = new int[10][10];
さて、OBJ-Cで似たようなことをしたいのですが、構文を正しく理解できません。現在、私はそれを1つのステップで持っていますが、現在持っている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」というキーワードを使用することはできず、intにメッセージを送信することもできません。:(
*編集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;