queue クラス : Count ゲッタ

説明

キューに含まれる要素の数を取得します。

構文

queueInstance.Count

引数

無し

返り値

クラス説明
intキューに含まれる要素の数。

サンプルコード

//anyQueueはqueue型のインスタンス.

int number = anyQueue.Count;

注意

System.Collections.Generic.Queue<t>.Countのラッパーです。

参照リンク

Copyright © Rice All rights reserved.