Instance Method
インスタンスメソッド
initWithCapacity:
Returns an NSMutableString
object initialized with initial storage for a given number of characters,
NSMutableString
オブジェクトを返します、与えられた数の文字に対する初期ストレージで初期化されます。
Parameters
パラメータ
capacity
The number of characters the string is expected to initially contain.
文字列が最初に含むことを予想される文字の数。
Return Value
戻り値
An initialized NSMutableString
object with initial storage for capacity
characters. The returned object might be different than the original receiver.
初期化されたNSMutableString
オブジェクト、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
によって指定された文字の数は、単にデータストレージの効率を増やすためのヒントです。値は、文字列の長さを制限しません。
See Also
参照
Creating and Initializing a Mutable String
可変文字列の作成と初期化
+ stringWithCapacity:
Returns an empty NSMutableString
object with initial storage for a given number of characters.
空のNSMutableString
オブジェクトを返します、与えられた数の文字に対する初期ストレージをもちます。