配列に関する Java の動作がわかりません。ある場合には配列を定義することを禁止しますが、別の場合には同じ定義を許可します。
チュートリアルの例:
String[][] names = {
{"Mr. ", "Mrs. ", "Ms. "},
{"Smith", "Jones"}
};
System.out.println(names[0][0] + names[1][0]); // the output is "Mr. Smith";
私の例:
public class User {
private static String[][] users;
private static int UC = 0;
public void addUser (String email, String name, String pass) {
int i = 0;
// Here, when I define an array this way, it has no errors in NetBeans
String[][] u = { {email, name, pass}, {"one@one.com", "jack sparrow", "12345"} };
// But when I try to define like this, using static variable users declared above, NetBeans throws errors
if (users == null) {
users = { { email, name, pass }, {"one", "two", "three"} }; // NetBeans even doesn't recognize arguments 'email', 'name', 'pass' here. Why?
// only this way works
users = new String[3][3];
users[i][i] = email;
users[i][i+1] = name;
users[i][i+2] = pass;
UC = UC + 1;
}
}
NetBeans によってスローされる間違いは次のとおりです。
違法な表現の開始、
";" 予想される、
ステートメントではありません。
また、配列の定義で引数email
,name
を認識しません。しかし、配列を定義するとそれらを認識します。pass
users
u
これら2つの定義の違いは何ですか? なぜ1つは機能するのに、同じ方法で定義された別のものは機能しないのですか?