The number of characters the string is expected to initially contain. 文字列が最初に含むことを予想される文字の数。
Initializer
init(capacity:)
Returns an
NSMutableString
object initialized with initial storage for a given number of characters,
NSMutableString
オブジェクトを返します、与えられた数の文字に対する初期ストレージで初期化されます。
Availability 有効性
- iOS 2.0+
- iPadOS 2.0+
- macOS 10.0+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
init(capacity: Int
)
Parameters パラメータ
capacity
Return Value 戻り値
An initialized NSMutable
object with initial storage for capacity
characters. The returned object might be different than the original receiver.
初期化されたNSMutable
オブジェクト、capacity
文字に対する初期ストレージを持ちます。返されるオブジェクトは、オリジナルのレシーバとは異なるかもしれません。
Discussion 議論
The number of characters indicated by capacity
is simply a hint to increase the efficiency of data storage. The value does not limit the length of the string.
capacity
によって指定された文字の数は、単にデータストレージの効率を増やすためのヒントです。値は、文字列の長さを制限しません。