What is difference between these two regarding implementation inside STL. what is the difference regarding performance? I guess when it is read only, we prefer const_iterator. right?
Thank you.
|
|
|
There is not performance difference. The const_iterator returns constant pointers (const T*) and prevent modification of the pointed variables: it enforces const-correctness [1]. When you have a const reference to the container, you can only get a const_iterator. |
|||
|
|