std::stack::push

来自cppreference.com
< cpp‎ | container‎ | stack

 
 
 
的std ::堆栈
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
stack::stack
stack::~stack
stack::operator=
元素的访问
原文:
Element access
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
stack::top
容量
原文:
Capacity
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
stack::empty
stack::size
修饰符
原文:
Modifiers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
stack::push
stack::emplace
stack::pop
stack::swap
 
void push( const T& value );
void push( T&& value );
(C++11 起)

Pushes the given element value to the top of the stack.

1) Effectively calls c.push_back(value)

2) Effectively calls c.push_back(std::move(value))

目录

[编辑] 参数

value -
推的元素的值
原文:
the value of the element to push
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

(无)
原文:
(none)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 复杂性

Equal to the complexity of Container::push_back.

[编辑] 另请参阅

(C++11)
constructs element in-place at the top
(公共成员函数) [edit]
移除最上面的元素
原文:
removes the top element
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公共成员函数) [edit]