Erase () method of list in STL

Source: Internet
Author: User

Erase () the method is to delete the node specified by iterator, but note that iterator is also destroyed when the function is executed. In this case, the iterator operation will report an error. The following is about erase () correct use of methods

Method 1:

Std: list <> (itList = List. begin (); itList! = (WillDelete (* = ++

Method 2:

Std: list <> (itList = List. begin (); itList! = (WillDelete (* ++

Error Method 1:

Std: list <> (itList = List. begin (); itList! = List. end (); itList ++ (WillDelete (*

Error Method 2:

Std: list <> (itList = List. begin (); itList! = (WillDelete (* = List. erase (++
At the same time, it should be noted that std: list multithreading is not safe. Therefore, multithreading usually requires a lock on list operations to ensure security.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.