Type Property 型プロパティ

default

The default time zone for the current app. 現在のアプリに対する省略時のタイムゾーン。

Declaration 宣言

class var `default`: TimeZone { get set }

Discussion 議論

If no default time zone has been set, the current system time zone is used. If the current system time zone cannot be determined, the GMT time zone is used instead. defaultタイムゾーンが設定されていないならば、現在のシステムタイムゾーンが使われます。現在のシステムタイムゾーンが決定されることができないならば、GMTタイムゾーンが代わりに使われます。

The default time zone is used by the app for date and time operations. You can set it to cause the app to run as if it were in a different time zone. Setting the default property clears any value that was previously set. defaultタイムゾーンは、そのアプリによって日付と時刻演算に使われます。あなたはそれを設定することで、そのアプリをまるでそれが異なるタイムゾーンの中にあるかのように動作させられます。defaultプロパティを設定することは、それが以前に設定された何らかの値をきれいに取り除きます。

If you access the default class property, assign its value to a variable, and set a new default time zone, the object stored in the variable doesn't update to reflect the new default time zone. Contrast this behavior with that of the local class property, which returns a proxy object that always reflects the current system time zone. あなたがdefaultクラスプロパティにアクセスして、それの値を変数に割り当てて、そして新しいdefaultタイムゾーンに設定するならば、変数の中に格納されたオブジェクトは新しいdefaultタイムゾーンを反映するように更新しません。この挙動をlocalクラスプロパティと比較してください、それはプロキシオブジェクトを返します、それは常に現在のシステムタイムゾーンを反映します。

See Also 参照

Working with System Time Zones システムタイムゾーンを扱う