Show page source of JavaFXReference_05_04_InstanceInitialization #43495

= インスタンスの初期化
----
== 初期化順序

新しいJavaFXクラスのインスタンスは次の順序で初期化されます。

{{{ comment
The object is created. 
The Java superclass default constructor, if any, is executed. 
The values of the object literal's instance variable initializers are computed (but not set). 
The instance variables of JavaFX superclasses are set. 
The instance variables of this class are set, in lexical order. 
The init block, if any, is evaluated. The instance is now initialized. 
The postinit block, if any, is evaluated. 
}}}

 * オブジェクトが生成されます。
 * Javaのスーパークラスのデフォルトコンストラクタが(もしあれば)実行されます。
 * オブジェクト式のインスタンス変数の初期化式が実行されます(が、設定はされません)。
 * JavaFXのスーパークラスのインスタンス変数が設定されます。
 * このクラスのインスタンス変数が辞書順で設定されます。
 * '''init'''ブロックが(もしあれば)評価されます。この時点で、このインスタンスが初期化されます。
 * '''postinit'''ブロックが(もしあれば)評価されます。

次の節でどうやってインスタンス変数が設定されるかを取り上げます。

----
== インスタンス変数を初期化する手段
{{{ comment
The value of an instance variable at the end of initialization can be set in any of several ways: value provided in the object literal, the initial value specified in the variable declaration, an initializingExpression on a variable override declaration, or an assignment in an initBlock. These avenues are discussed below.

Class instances are created with object literal expression (a newExpression can be considered, for these purposes as equivalent to an object literal that sets no instance variables). For example:
}}}

インスタンス変数の値は初期化の終わりで、いくつかの方法で設定されます。
オブジェクト式に用意されている値、変数宣言で指定されている初期値、override変数宣言の''初期化式''、または、
''initブロック''での割り当て。これらの手段は以下で論じます。

クラスのインスタンスはオブジェクト式で生成されます。(''new式''とみなされます。なぜならこれらの目的は
インスタンス変数を設定しないオブジェクト式と等価だからです。)

例:
{{{
var fu = Foo { x: 14 }
}}}

{{{ comment
Here the instance variable x in Foo is set by the object literal to be 14 (note: x may have been declared in a superclass of Foo).

The declaration of an instance variable explicitly or implicitly sets a default value for the variable. For example it could be set explicitly:
}}}
ここではFooのインスタンス変数 x がオブジェクト式で14に設定されます。
(注意:xはFooのスーパークラスで宣言されているかも知れません。)

インスタンス変数の明示的な、あるいは暗黙的な宣言は変数にデフォルト値を設定します。
例では明示的に設定されます。

{{{
class Foo {
   var x = 99;
}
}}}
ここでxは''初期化式''を持っています。

もし''初期化式''が用意されていなかったら、この型のデフォルト値は、インスタンス変数の型のデフォルト値になります。
[wiki:JavaFXReference_02_02_DefaultValues 型と値]の章を参照してください。

例:
{{{
class Answers {
   var ungulate : Boolean;
}
}}}

falseはBoolean型のデフォルト値なので、ungulateのデフォルト値はfalseです。

''override変数宣言''はデフォルト値をオーバーライドできます。

例:
{{{
class Shed {
   var siding = "aluminum";
}

class FancyShed extends Shed {
   override var siding = "copper";
}
}}}

{{{ comment
Here FancyShed overrides the default value of siding. Note that a variableOverrideDeclaration that does not have an initializingExpression will not override the default value.

Exactly one of the above will set the initial value. If the value is provided in the object literal, that will be used. Otherwise, if an override for the variable provides an initializingExpression it will be used. If it is not overridden, an explicit initializingExpression will supply the initial value. Failing all that, the default value for the type will be used.

After one of the above has set the instance variable, the initBlock, if present, is executed. This block can reset the instance variable.
}}}

ここで!FancyShedはsidingのデフォルト値をオーバーライドします。
''初期化式''を持たない''override変数宣言''はデフォルト値をオーバーライドしないことに注意してください。

確かに上の一つは初期地を設定します。もしオブジェクト式で値が用意されなかったら、それが使われるでしょう。
一方、もし変数のオーバーライドに''初期化式''があれば、それが使われるでしょう。
もし、それがオーバーライドされない場合、明示的な''初期化式''が初期値を与えます。
すべてが無い場合、型のデフォルト値が使われます。

上の一つがインスタンス変数を設定した後、''initブロック''が(もしあれば)実行されます。
このブロックはインスタンス変数を初期化できます。