var count: Int
The number of elements in the array.
その配列中の要素の数。
var capacity: Int
The total number of elements that the array can contain without allocating new storage.
その配列が新しいストレージを割り当てることなく含むことができる要素の総数。
Availability
Technology
var isEmpty: Bool
{ get }
When you need to check whether your collection is empty, use the is
property instead of checking that the count
property is equal to zero. For collections that don’t conform to Random
, accessing the count
property iterates through the elements of the collection.
あなたのコレクションが空かどうか確認する必要がある場合、is
プロパティを使ってください、count
プロパティがゼロと等しいのを調べるのではなく。Random
に準拠しないコレクションに対して、count
プロパティにアクセスすることはコレクションの要素を始めから終わりまで反復します。
Complexity: O(1) 計算量:O(1)
var count: Int
var capacity: Int