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

std::stack::~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
 
~stack();
Destructs the container adaptor.要素のデストラクタが呼ばれ、使用されるストレージの割り当てが解除されます。要素がポインタである場合には、ポイント先のオブジェクトが破棄されないことに注意して、.
Original:
Destructs the container adaptor. The destructors of the elements are called and the used storage is deallocated. Note, that if the elements are pointers, the pointed-to objects are not destroyed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集]複雑

Linear in the size of the container adaptor.

close