📜  C++ STL中的array :: empty()

📅  最后修改于: 2021-05-30 02:45:28             🧑  作者: Mango

数组类通常比C型数组更有效,更轻量且更可靠。 C++ 11中数组类的引入为C样式数组提供了更好的替代方法。

array :: empty()

empty()函数用于检查数组容器是否为空。

句法 :

arrayname.empty()
Parameters :
No parameters are passed.
Returns :
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 
#include 
using namespace std;
  
int main()
{
    array 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 
#include 
using namespace std;
  
int main()
{
    array myarray;
    if (myarray.empty()) {
        cout << "True";
    }
    else {
        cout << "False";
    }
    return 0;
}

输出 :

True
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”