共用方式為


array::empty

測試項目是否不存在。

bool empty() const;

備註

成員函式傳回 true,只有當 N == 0。

範例

 

// std_tr1__array__array_empty.cpp 
// compile with: /EHsc 
#include <array> 
#include <iostream> 
 
typedef std::array<int, 4> Myarray; 
int main() 
    { 
    Myarray c0 = {0, 1, 2, 3}; 
 
// display contents " 0 1 2 3" 
    for (Myarray::const_iterator it = c0.begin(); 
        it != c0.end(); ++it) 
        std::cout << " " << *it; 
    std::cout << std::endl; 
 
// display whether c0 is empty " false" 
    std::cout << std::boolalpha << " " << c0.empty(); 
    std::cout << std::endl; 
 
    std::array<int, 0> c1; 
 
// display whether c1 is empty " true" 
    std::cout << std::boolalpha << " " << c1.empty(); 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

需求

標題: <陣列>

命名空間: std

請參閱

參考

<array>

array 類別 (STL)

array::size