次の方法で共有


stack::empty

スタックが空かどうかをテストします。

bool empty( ) const;

戻り値

スタックが空の場合true ; スタックが空である false

使用例

// stack_empty.cpp
// compile with: /EHsc
#include <stack>
#include <iostream>

int main( )
{
   using namespace std;
   // Declares stacks with default deque base container
   stack <int> s1, s2;

   s1.push( 1 );

   if ( s1.empty( ) )
      cout << "The stack s1 is empty." << endl;
   else
      cout << "The stack s1 is not empty." << endl;

   if ( s2.empty( ) )
      cout << "The stack s2 is empty." << endl;
   else
      cout << "The stack s2 is not empty." << endl;
}
  
  

必要条件

ヘッダー: <stack>

名前空間: std

参照

関連項目

stack Class

stack::top と stack::empty

標準テンプレート ライブラリ