The Wayback Machine - https://web.archive.org/web/20171208050219/http://ja.cppreference.com:80/w/cpp/container/stack/swap2
名前空間
変種
操作

std::swap(std::stack)

提供: cppreference.com
< cpp‎ | container‎ | stack

 
 
 
のstd ::スタック
メンバ関数
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::stack
stack::~stack
stack::operator=
要素アクセスの循環参照を解除するために使用されている
Original:
Element access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::top
容量
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::empty
stack::size
修飾子
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
stack::push
stack::emplace
stack::pop
stack::swap
 

テンプレートのループを検出しました: テンプレート:include page

template<  >

void swap( stack<>&lhs,

           stack<>&rhs );
std::swapstd::stackアルゴリズムを専門としています。 lhsrhsのコンテンツを交換します。コー​​ルlhs.swap(rhs).
Original:
Specializes the std::swap algorithm for std::stack. Swaps the contents of lhs and rhs. Calls lhs.swap(rhs).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

目次

[編集]パラメータ

lhs, rhs -
その内容は交換するコンテナ
Original:
containers whose contents to swap
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.

[編集]複雑

Same as swapping the underlying container.

[編集]も参照してください

コンテナの内容をスワップします
(パブリックメンバ関数)[edit]
close