命名空间
变体
操作

std::stack<T,Container>::size

来自 cppreference.com
< cpp‎ | 容器‎ | 堆栈
size_type size() const;

返回容器适配器中的元素数量。等效于 return c.size().

内容

[编辑] 参数

(无)

[编辑] 返回值

容器适配器中的元素数量。

[编辑] 复杂度

常数。

[编辑] 示例

#include <algorithm>
#include <cassert>
#include <stack>
 
int main()
{
    std::stack<int> stack;
 
    assert(stack.size() == 0);
 
    const int count = 8;
 
    for (int i = 0; i != count; ++i)
        stack.push(i);
 
    assert(stack.size() == count);
}

[编辑] 另请参阅

检查容器适配器是否为空
(公有成员函数) [编辑]
(C++17)(C++20)
返回容器或数组的大小
(函数模板) [编辑]