📅  最后修改于: 2023-12-03 14:59:45.680000             🧑  作者: Mango
empty()
是C++ STL中用于判断列表(list)是否为空的成员函数,如果列表为空则返回 true
,否则返回 false
。
bool empty() const;
如果列表为空,则返回 true
,否则返回 false
。
#include <iostream>
#include <list>
using namespace std;
int main() {
list<int> myList;
if (myList.empty()) {
cout << "The list is empty." << endl;
} else {
cout << "The list is not empty." << endl;
}
return 0;
}
以上程序的输出结果为:
The list is empty.
empty()
函数不会修改列表。