size
语法:
1 |
size_type size(); |
size()函数返回双向队列中的元素个数。
1 2 3 4 5 |
源代码 /** Returns the number of elements in the %deque. */ size_type size() const { return this->_M_impl._M_finish - this->_M_impl._M_start; } |
测试代码
测试结果
10
《双向队列size函数运用实例》上有1条评论
评论已关闭。