C++判断容器是否为空/无元素

vector<int>  list;

list.empty();

或者 

if(list.begin() == list.end(){
	cout << "为空" << endl;
}
else if(list.begin() != list.end(){
	cout << "不为空" << endl;
}
Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐