Discussion
議論
This initializer doesn’t necessarily allocate the requested memory right away. Data
allocates additional memory as needed, so capacity
simply establishes the initial capacity. When it does allocate the initial memory, though, it allocates the specified amount.
このイニシャライザは、必ずしも直ちに要求されたメモリをアロケートされません。Data
は追加のメモリを必要に応じてアロケートします、なのでcapacity
は単に初期容量を確立します。それが初期メモリをアロケートする場合、そうはいっても、それは指定された量をアロケートします。
This method sets the count
of the data to 0.
このメソッドは、このデータのcount
を0に設定します。
If the capacity specified in capacity
is greater than four memory pages in size, this may round the amount of requested memory up to the nearest full page.
capacity
において指定された容量が大きさにおいて4メモリページより大きいならば、これは要求されたメモリの総量を最寄りのフルページまで切り上げるかもしれません。