在C++中,你可以使用clear()
成员函数来清空一个std::set
集合
#include#include int main() { std::set my_set = {1, 2, 3, 4, 5}; std::cout << "Before clearing: " << my_set << std::endl; my_set.clear(); std::cout << "After clearing: " << my_set << std::endl; return 0; }
输出:
Before clearing: {1, 2, 3, 4, 5} After clearing: {}
在这个示例中,我们首先创建了一个包含5个整数的std::set
集合。然后,我们使用clear()
函数清空了集合,并在每次操作后打印集合的内容。