99

私はJavaで働いています。

私は通常、いくつかのオブジェクトを次のようにセットアップします。

public class Foo {
    private SomeObject someName;

    // do stuff

    public void someMethod() {
        if (this.someName != null) {
            // do some stuff
        }
    }
}

問題は次のとおりですsomeName。この例では、初期化されていないオブジェクトの null チェックが正確であると想定nullできますか?reliably for all objects

4

2 に答える 2

121

Correct, both static and instance members of reference type not explicitly initialized are set to null by Java. The same rule applies to array members.

From the Java Language Specification, section 4.12.5:

Initial Values of Variables

Every variable in a program must have a value before its value is used:

Each class variable, instance variable, or array component is initialized with a default value when it is created

[...] For all reference types, the default value is null.

Note that the above rule excludes local variables: they must be initialized explicitly, otherwise the program will not compile.

于 2013-05-22T18:59:31.430 に答える
16

参照が宣言されているがインスタンス化されていない場合Object、その値はnullです。

于 2013-05-22T18:59:38.727 に答える