queue::empty (STL/CLR)

测试组件是否不存在。

    bool empty();

备注

成员函数返回 true 为空控件序列。它与 queue::size (STL/CLR)() == 0等效。使用该测试队列是否为空。

示例

// cliext_queue_empty.cpp 
// compile with: /clr 
#include <cliext/queue> 
 
typedef cliext::queue<wchar_t> Myqueue; 
int main() 
    { 
    Myqueue c1; 
    c1.push(L'a'); 
    c1.push(L'b'); 
    c1.push(L'c'); 
 
// display initial contents " a b c" 
    for each (wchar_t elem in c1.get_container()) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    System::Console::WriteLine("size() = {0}", c1.size()); 
    System::Console::WriteLine("empty() = {0}", c1.empty()); 
 
// clear the container and reinspect 
    c1.pop(); 
    c1.pop(); 
    c1.pop(); 
    System::Console::WriteLine("size() = {0}", c1.size()); 
    System::Console::WriteLine("empty() = {0}", c1.empty()); 
    return (0); 
    } 
 
  

要求

标题: <cliext/队列>

命名空间: cliext

请参见

参考

queue (STL/CLR)

queue::size (STL/CLR)