在C++的set容器中,重復元素會被自動過濾掉,即set容器中不允許有重復的元素。當向set容器中插入重復元素時,set會自動忽略重復元素,保留容器中的唯一元素。
例如,考慮以下示例代碼:
#include <iostream>
#include <set>
int main() {
std::set<int> mySet;
mySet.insert(10);
mySet.insert(20);
mySet.insert(10); // 重復元素,會被忽略
for (int num : mySet) {
std::cout << num << " ";
}
return 0;
}
輸出結果為:
10 20
可以看到,重復的元素10被自動忽略掉,set容器中只保留了唯一的元素。