Type Method
型メソッド
stringWithCapacity:
Returns an empty NSMutableString
object 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 empty NSMutableString
object with initial storage for capacity
characters.
空の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
可変文字列の作成と初期化
- initWithCapacity:
Returns an NSMutableString
object initialized with initial storage for a given number of characters,
NSMutableString
オブジェクトを返します、与えられた数の文字に対する初期ストレージで初期化されます。
Related Documentation
関連文書