當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ array::empty()用法及代碼示例



數組與C-style數組相比,類通常更高效,light-weight更可靠。 C++ 11中數組類的引入為C-style數組提供了更好的替代方法。

array::empty()

empty()函數用於檢查數組容器是否為空。

用法:


arrayname.empty()
參數:
No parameters are passed.
返回:
True, if array is empty
False, Otherwise

例子:

Input :myarray{1, 2, 3, 4, 5};
         myarray.empty();
Output:False

Input :myarray{};
         myarray.empty();
Output:True

錯誤和異常

1.它沒有異常拋出保證。
2.傳遞參數時顯示錯誤。

// Non Empty array example 
// CPP program to illustrate 
// Implementation of empty() function 
#include <array> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    array<int, 5> myarray{ 1, 2, 3, 4 }; 
    if (myarray.empty()) { 
        cout << "True"; 
    } 
    else { 
        cout << "False"; 
    } 
    return 0; 
}

輸出:

False
// Empty array example 
// CPP program to illustrate 
// Implementation of empty() function 
#include <array> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    array<int, 0> myarray; 
    if (myarray.empty()) { 
        cout << "True"; 
    } 
    else { 
        cout << "False"; 
    } 
    return 0; 
}

輸出:

True


相關用法


注:本文由純淨天空篩選整理自AyushSaxena大神的英文原創作品 array::empty() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。