var count: Int
The number of elements in the collection.
コレクションの中の要素の数。
Availability
Technology
var count: Int
{ get }
To check whether a collection is empty, use its is
property instead of comparing count
to zero. Unless the collection guarantees random-access performance, calculating count
can be an O(n) operation.
あるコレクションが空かどうか調べるには、それのis
プロパティを使ってください、count
をゼロと比較するのでなく。そのコレクションが無作為アクセス性能を保証しない限り、count
の算出は、O(n)演算であるはずです。
Complexity: O(1) if the collection conforms to Random
; otherwise, O(n), where n is the length of the collection.
計算量:O(1)、もしコレクションがRandom
に準拠するならば;そうでなければ、O(n)、そこでnはコレクションの長さです。
var count: Int