Instance Property インスタンスプロパティ

threadDictionary

The thread object's dictionary. スレッドオブジェクトの持つ辞書。

Declaration 宣言

var threadDictionary: NSMutableDictionary { get }

Discussion 議論

You can use the returned dictionary to store thread-specific data. The thread dictionary is not used during any manipulations of the NSThread object—it is simply a place where you can store any interesting data. For example, Foundation uses it to store the thread’s default NSConnection and NSAssertionHandler instances. You may define your own keys for the dictionary. あなたは、返された辞書を使って、スレッド特有のデータを格納できます。スレッド辞書は、NSThreadオブジェクトのいかなる操作の間にも使われることができません — それは単にあなたが何らかの興味深いデータを格納可能な場所です。例えば、Foundationはそれを使ってスレッドのもつ省略時のNSConnectionおよびNSAssertionHandlerインスタンスを格納します。あなたは、あなた独自のキーを辞書に対して定義するかもしれません。

See Also 参照

Working with Thread Properties スレッドプロパティを扱う