func increaseLength (by: Int)
Increases the length of the receiver by a given number of bytes.
レシーバの長さをある与えられたバイト数によって漸増します。
Availability 有効性
Technology
var length: Int
{ get set }
The mutable data object’s length parameter is read-writeable. You can set this parameter to expand or truncate the number of bytes contained by the data object. If the mutable data object is expanded, the additional bytes are filled with zeros. 可変データオブジェクトのもつ length パラメータは、読み書き両用です。あなたはこのパラメータを設定することで、データオブジェクトによって含まれるバイト数を拡張または切詰めることができます。可変データオブジェクトが拡張されるならば、追加のバイトはゼロで満たされます。
Important 重要
Changing the length of a mutable data object invalidate any existing data pointers returned by the bytes
or mutable
properties.
可変データオブジェクトの長さの変更は、bytes
またはmutable
プロパティによって返されるあらゆる既存のデータポインタを無効にします。
func increaseLength (by: Int)