数组与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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。