0
ここでJavaで単語をクリアするだけです。Javaで同じものの初期化名と割り当て名があります(2回目ではありません)。
プリミティブ型:これは宣言の権利である
:
int a;//declared but unitialized
Intializationsや課題:
a = 1;//intialization and assignment
a = 2;//this is no longer intialization but still an assignment the 2nd time?
int b = 1;//declaration and intialization = assignment combined?
b = 2;//just assignment because 2nd time?
クラスタイプ:
String str;//declaration
str = "some words";//this is also an intialization and assignment?
str = "more words"; //since new object still both intialization and assignment even 2nd time?
ただし、割り当てについてはどうですか? –
初期化は、指定された変数への最初の割り当てに過ぎません。 – Mat
したがって 'int a; System.out.println( "hello"); a = 1; a = 2; '1の代入は、宣言と組み合わされていなくても、初期化です。 –