Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
簡単な質問です。
違いがあるとすれば、オブジェクトのクラス フィールドとしての次の宣言です。
public Account loginaccount = new Account();
対
public Account loginaccount;
ありがとう。
Account最初の例では、クラスのインスタンスを変数に割り当てますloginaccount。2 番目はそうしないため、変数は初期化されません ( null)。
Account
loginaccount
null