std::queue::push
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| void push( const T& value ); |
||
| void push( T&& value ); |
(C + + 11以来) | |
Pushes the given element value to the end of the queue.
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 end (パブリックメンバ関数) |
| 最初の要素を削除します Original: removes the first element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |