A C++ STL iterator with strictly read-only access.
0
votes
1answer
15 views
QHash cannot convert parameter 1 from 'class QHash<class QDomElement,class QDomElement>::const_iterator' to '::iterator'
I have a qhash defined with key value pair as QDomElement. as given below. I am trying to update the hash by using const_iterator. But while doing so below error is thrown, how to resolve the same:-
...
-1
votes
2answers
33 views
Indirection operator on const_iterator error
This code
std::ostream& operator<<( std::ostream& output, const Array& a) {
if (a.empty()) {
output << Structural::BEGIN_ARRAY << Structural::END_ARRAY;
...
1
vote
1answer
34 views
access few parameters from a map
I have defined a map,
static std::map<std::string, std::string> myentries;
entries are filled dynamically through key and value strings, the number of elements and sequence is dynamic ..
...
3
votes
1answer
177 views
c++11: erase using a const_iterator
I believe that since C++11, the erase function of most containers (e.g. std::vector) accepts a const_iterator as parameter:
iterator erase (const_iterator position);
Still my compilers (GCC 4.8 and ...
4
votes
1answer
135 views
Convert object of custom template based iterator class to const_iterator
I'm studying OOP course (C++ is a base language) at university. My task is to implement own linked list template container class. I did it almost completely but faced with problem. It is known that ...
1
vote
1answer
121 views
How to expose C++ classes with const_iterator
I am using Boost.Python to expose a 3rd party C++ API.
A header file I've come to declares an iterable class (has begin and end methods), and a custom iterator class with which to do the iteration:-
...
1
vote
2answers
126 views
Passing map<>::iterator as map<>::const_iterator &
I have a problem passing a map<...>::iterator object to a function as a const_iterator & on GCC:
class MyClass {
};
bool MyClass::_GetInstList(map<string,InstList>::const_iterator ...
8
votes
2answers
148 views
const_iterator and constness of const_iterator::value_type
Why in STL
std::iterator_traits<const T*>::value_type
is the same type as
std::iterator_traits<T*>::value_type
Why it is designed like that? Shouldn't the first be const T and the ...
1
vote
2answers
54 views
insert returning iterator
I am implementing class graph.
In similar to stl ,I think ,that the signature of insert function should be
pair<iterator,bool> insert ( const value_type& x );
For my class I have ...
1
vote
2answers
76 views
Accessing member via set's NON-const iterator that doesn't affect invariants
Let's say I have code like so:
#include <set>
#include <math.h>
typedef int OtherTypes;
struct MyType
{
double Field1;
OtherTypes MoreFields;
MyType(double blah) :
...
32
votes
4answers
2k views
What is the reason behind cbegin/cend?
I wonder why cbegin and cend were introduced in C++11?
What are cases when calling these methods makes a difference from const overloads of begin and end?
0
votes
1answer
102 views
It fails to define a const_iterator from it's counterpart iterator
I am extending stl container with a self defined container so as to provide more flexible control on the operations of the elements
class MyContainer;
template <typename T> class myiterator ...
0
votes
1answer
245 views
dereferencing iterator causes 'can not convert' error when it seems it shouldn't
Using VS 2008, the target environment is Windows CE with an ARM processor if that makes a difference. I know that the compiler we are using is kind of dated as well...
The basic problem I am having ...
1
vote
2answers
121 views
How to change a set element?
I want to change the element in a set, so I used set<T>::iterator. However, the compiler argues "the element is const". Then I realized that set<T>::iterator is a const_iterator...
So, ...
-2
votes
2answers
249 views
Valgrind says that const-iterator tries to access uninitialised space, but actually it is
I'm trying to use const_iterators to go through a list of elements (the elements of a matrix).
SparseMatrix matd(5,5,0); //5x5 matrix with 0 as default element.
//Follows elements insertion...
...
0
votes
1answer
174 views
Strange const_iterator behavior
I'm doing a main.cpp to test my implementation of a sparse matrix, where I create two const_iterators:
SparseMatrix<double>::const_iterator a,b;
a=mata.begin(); //mata previously created as ...
1
vote
2answers
390 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 ...
28
votes
6answers
6k 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 ...
1
vote
3answers
718 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 = ...
6
votes
2answers
306 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!
...
1
vote
2answers
105 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
255 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 ...
3
votes
6answers
147 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 ...
1
vote
5answers
563 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 ...
31
votes
4answers
12k 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
3answers
3k 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: ...
2
votes
4answers
2k 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 ...
6
votes
3answers
6k 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() : ... { }
...
15
votes
5answers
6k 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 ...
7
votes
9answers
3k 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 ...
26
votes
11answers
7k 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 ...

