Type Method 型メソッド

stringWithCapacity:

Returns an empty NSMutableString object with initial storage for a given number of characters. 空のNSMutableStringオブジェクトを返します、与えられた数の文字に対する初期ストレージをもちます。

Declaration 宣言

+ (NSMutableString *)stringWithCapacity:(NSUInteger)capacity;

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 可変文字列の作成と初期化

Related Documentation 関連文書