Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
11answers
2k views

Are const_iterators faster?

Our coding guidelines say prefer const_iterator, because they are little faster compared to normal iterator. It seems like compiler optimizes the code when you use the const _iterator. Is it really ...
14
votes
6answers
248 views

How to implement an STL-style iterator and avoid common pitfalls?

I made a collection for which I want to provide an STL-style, random-access iterator. I was searching around for an example implementation of an iterator but I didn't find any. I know about the need ...
11
votes
5answers
2k views

Should I prefer iterators over const_iterators?

Someone here recently brought up the article from Scott Meyers that says: Prefer iterators over const_iterators (pdf link). Someone else was commenting that the article is probably outdated. I'm ...
9
votes
4answers
2k views

How to correctly implement custom iterators and const_iterators?

I have a custom container class for which I'd like to write the iterator and const_iterator classes. I never did this before and I failed to find an appropriate how-to. What are the guidelines ...
5
votes
2answers
96 views

reverse_iterator adapter

I'm trying to implement a reverse-iterator adaptor for my iterator and const_iterator classes with a little bit of trouble. If anyone could guide me through this, that would be greatly appreciated! ...
5
votes
3answers
1k views

C++ iterator and const_iterator problem for own container class

I'm writing an own container class and have run into a problem I can't get my head around. Here's the bare-bone sample that shows the problem. It consists of a container class and two test classes: ...
3
votes
6answers
130 views

How's the thing iterated over called?

I wanted to express that an iterator is const (i.e you cannot increment or decrement it) but that the thing it yields is non-const: iterator const it = foo.begin(); it++; // error *it = ...; // not ...
3
votes
3answers
3k views

C++ : How to write a const_iterator?

I've written my own container template with an iterator. How do I implement const_iterator? template <class T> class my_container { private: ... public: my_container() : ... { } ...
2
votes
4answers
645 views

Constant correctness

In the printMessage if you access the vector of a constant class using the index it works fine, but not with the the iterator (*itr). If the iterator is declared as constant_iterator then it works ...
2
votes
10answers
1k views

How to remove constness of const_iterator?

As an extension to this question Are const_iterators faster?, I have another question on const_iterators. How to remove constness of a const_iterator? Though iterators are generalised form of ...
1
vote
2answers
68 views

c++ stl const iterator and const pointer

I'm a little confuse about meaning of this const keyword I have a class like this class ClassA { public: typedef std::tr1::shared_ptr<ClassA> ptr; typedef std::tr1::shared_ptr<const ...
1
vote
3answers
73 views

Understanding const_iterator with pointers?

I'm trying to understand what const_iterator means. I have the following example code: void CustomerService::RefreshCustomers() { for(std::vector<Customer*>::const_iterator it = ...
1
vote
2answers
75 views

Technique for factoring find like methods?

I am looking for a technique to factor find like methods. The problem is the following. I need a find method on a container that does not need to modify the container contents to do the search. ...
1
vote
2answers
130 views

STL rotating const_iterators of unique_ptrs

I have problems using std::rotate on a const_iterator over a unique_ptr middle. I have tried: std::vector<std::unique_ptr<Object> >::const_iterator middle; // middle is pointing at ...
1
vote
5answers
305 views

c++ function with max_element & iterator = 3x slower

The program I am developing gets three times slower when I call the following function. It wouldn't be bad if it was not called a couple million of times. double obterNormLarguraBanda(const ...