ฉันใช้ GCC 7.3.1 แต่ได้ทดสอบกับ coliru ด้วยซึ่งฉันเชื่อว่าเป็นรุ่น 9.2.0 สร้างด้วยสิ่งต่อไปนี้:
g++ -fsanitize=address -fno-omit-frame-pointer rai.cpp
ที่นี่rai.cpp
:
#include <iostream>
#include <unordered_map>
int main()
{
try
{
struct MyComp {
bool operator()(const std::string&, const std::string&) const {
throw std::runtime_error("Nonono");
}
};
std::unordered_map<std::string, std::string, std::hash<std::string>, MyComp> mymap;
mymap.insert(std::make_pair("Hello", "There"));
mymap.insert(std::make_pair("Hello", "There")); // Hash match forces compare
} catch (const std::exception& e) {
std::cerr << "Caught exception: " << e.what() << "\n";
}
}
เรียกใช้ผลลัพธ์ใน:
> ./a.out
Caught exception: Nonono
=================================================================
==72432==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 32 byte(s) in 1 object(s) allocated from:
...
Direct leak of 4 byte(s) in 1 object(s) allocated from:
...
Indirect leak of 60 byte(s) in 2 object(s) allocated from:
...
SUMMARY: AddressSanitizer: 96 byte(s) leaked in 4 allocation(s).
ฉันไม่เห็นหน่วยความจำรั่วด้วย Visual C ++ ( Microsoft (R) C/C++ Optimizing Compiler Version 19.24.28314 for x64
)
สิ่งนี้จะทำลายการรับประกันความปลอดภัยที่เป็นข้อยกเว้นที่เข้มงวดของunordered_map::insert
( https://stackoverflow.com/a/11699271/1958315 ) หรือไม่ นี่เป็นข้อบกพร่องใน GCC STL หรือไม่
std::unordered_map::insert
ไว้อย่างชัดเจนว่า "1-4) หากมีข้อยกเว้นเกิดขึ้นจากการดำเนินการใด ๆ การแทรกจะไม่มีผล" (เน้นที่เป็นของฉัน) จากที่นี่en.cppreference.com/w/cpp/container/unordered_map/insert