std::stack::push
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
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 | - | プッシュする要素の値
Original: the value of the element to push The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
(なし)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 複雑
Equal to the complexity of Container::push_back.
[編集] も参照してください
(C++11) |
constructs element in-place at the top (パブリックメンバ関数) |
先頭の要素を削除します Original: removes the top element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) |