函式功能
統計某一值在一定範圍內出現的次數(函式模板)Count appearances of value in range
函式原型
輸入參數
first:查詢的起始位置,為一個疊代器
last: 查詢的結束位置,為一個疊代器
返回值
通過比較是否等於 val 返回[first,last]與 val相等的數值的個數。
(Returns the number of elements in the range [first,last] that compare equal to val.)
注意事項
注意本函式與find的區別:
count 返回值為查找的個數
find 返回值為一個疊代器
實例
運行結果
相關函式
count_if ; find函式;