Home > Backend Development > C++ > Is it Safe to Call `erase()` on a C Map Element During Iteration?

Is it Safe to Call `erase()` on a C Map Element During Iteration?

Susan Sarandon
Release: 2024-12-11 15:21:14
Original
332 people have browsed it

Is it Safe to Call `erase()` on a C   Map Element During Iteration?

Consequences of Calling erase() on a Map Element During Iteration from Beginning to End

When iterating through a map in C , it is essential to consider the implications of calling the erase() method on a map element within the loop. Specifically, the question arises: is it safe to erase the element and continue iterating, or is it necessary to collect the keys in another container and perform a separate loop for erasure?

In C 03, erasing elements from a map does not invalidate any iterators except those pointing to the element that was deleted. However, it's crucial to note that your code is modifying the iterator after calling erase. This is problematic because pm_it becomes invalid once erase is called. To address this, you should increment the iterator before calling erase.

map<string, SerialdMsg::SerialFunction_t>::iterator pm_it = port_map.begin();
while (pm_it != port_map.end()) {
    if (pm_it->second == delete_this_id) {
        port_map.erase(pm_it++);  // Use iterator and post-increment
    } else {
        ++pm_it;  // Can use pre-increment here for efficiency
    }
}
Copy after login

In C 11, a significant improvement was made to erase, as it now returns the next iterator. This eliminates the need for the awkward post-increment technique shown above. Instead, you can write:

auto pm_it = port_map.begin();
while (pm_it != port_map.end()) {
    if (pm_it->second == delete_this_id) {
        pm_it = port_map.erase(pm_it);
    } else {
        ++pm_it;
    }
}
Copy after login

The above is the detailed content of Is it Safe to Call `erase()` on a C Map Element During Iteration?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template