On the book <Generic Programming and the STL>( Matthew . H . Austern ),this function is defined as
iterator set::begin() const.
However, why should a const object returns a non-const iterator?
Then, I found, in this book, the semantic of set::iterator is defined as same as set::const_iterator. Both of them must be const!
I tried to read the source of GNU STL(version 3.4.1).They were using a red-black tree to implant it (std::set has a _RBtree.) .Both set::iterator and set::const_iterator are simply defined as _RBtree::const_iterator.
But, in VC++, it is deferent.
There is a base class named xtree which also a red-black tree. Then the class map and set inherit from xtree (which implantation is better? is-a? has-a?).They don't defined iterator and const_iterator theirself,just inherit them from the base class xtree,and the member function begin() is defined as :
const_iterator set::begin() const;
iterator set::begin().
So ,we can initialize a mutable set, get the begin of it, then try to modify it!
The following code has been compiled successful under VC++2003
int a[4]={1,2,3,4};
std::set<int> s(a,a+4);
std::set<int>::iterator i=s.begin();
(*i) = 9;
std::cout<<"Now s = ";
std::copy(s.begin(),s.end(),std::ostream_iterator< int>(std::cout,","));
std::cout<<std::endl;
std::set<int>::const_iterator p=s.find(9);
if(p != s.end() )
std::cout<<(*p);
else std::cout<<"Cannot find the element special"<<std::endl;
A set must be a sorted container, but now it is not! So anything terrible things it would happen.
Is this a bug of VC++?
A bug of VC++.net STL
--
---------------snnn-------------
---http://snnn.blogone.net----- 11 3151
On Thu, 06 Jan 2005 01:18:22 +0800, snnn
<sn*****@gmail.com.haha.removeme> wrote: On the book <Generic Programming and the STL>( Matthew . H . Austern ),this function is defined as iterator set::begin() const. However, why should a const object returns a non-const iterator? Then, I found, in this book, the semantic of set::iterator is defined as same as set::const_iterator. Both of them must be const! I tried to read the source of GNU STL(version 3.4.1).They were using a red-black tree to implant it (std::set has a _RBtree.) .Both set::iterator and set::const_iterator are simply defined as _RBtree::const_iterator. But, in VC++, it is deferent. There is a base class named xtree which also a red-black tree. Then the class map and set inherit from xtree (which implantation is better? is-a? has-a?).They don't defined iterator and const_iterator theirself,just inherit them from the base class xtree,and the member function begin() is defined as : const_iterator set::begin() const; iterator set::begin(). So ,we can initialize a mutable set, get the begin of it, then try to modify it! The following code has been compiled successful under VC++2003 int a[4]={1,2,3,4}; std::set<int> s(a,a+4);
Shouldn't this be:
std::set<int> s(a,a+3);
??
Note that s is non-const...
std::set<int>::iterator i=s.begin(); (*i) = 9; std::cout<<"Now s = "; std::copy(s.begin(),s.end(),std::ostream_iterator< int>(std::cout,",")); std::cout<<std::endl; std::set<int>::const_iterator p=s.find(9); if(p != s.end() ) std::cout<<(*p); else std::cout<<"Cannot find the element special"<<std::endl;
A set must be a sorted container, but now it is not! So anything terrible things it would happen. Is this a bug of VC++? [or] A bug of VC++.net STL
You are mistaken... this is the declaration of begin() (actually two
declarations) for std::set as delivered with the Microsoft VCToolkit:
<quote>
iterator begin()
{ // return iterator for beginning of mutable
sequence
return (_TREE_ITERATOR(_Lmost()));
}
const_iterator begin() const
{ // return iterator for beginning of nonmutable
sequence
return (_TREE_CONST_ITERATOR(_Lmost()));
}
</quote>
As you can see, the "begin()" which returns a const_iterator is also
const, therefore you CANNOT modify the set if the set itself is const.
--
Bob Hairgrove No**********@Home.com
Bob Hairgrove wrote: On Thu, 06 Jan 2005 01:18:22 +0800, snnn <sn*****@gmail.com.haha.removeme> wrote:
int a[4]={1,2,3,4}; std::set<int> s(a,a+4);
Shouldn't this be: std::set<int> s(a,a+3); ??
That would only consume 3 elements of 's'.
Note that s is non-const...
What difference would that make? Values (r-values) used to
initialise the elements of the set<> cannot transfer their
const-ness, can they?
[...]
On Wed, 05 Jan 2005 15:36:30 -0500, Victor Bazarov
<v.********@comAcast.net> wrote: Note that s is non-const...
What difference would that make? Values (r-values) used to initialise the elements of the set<> cannot transfer their const-ness, can they?
The subject line says it all:
"which type should "std::set::begin() const" return?"
Answer:
std::set::const_iterator (which it does).
The OP seems to think it doesn't.
--
Bob Hairgrove No**********@Home.com
On Wed, 05 Jan 2005 15:36:30 -0500, Victor Bazarov
<v.********@comAcast.net> wrote: Bob Hairgrove wrote: On Thu, 06 Jan 2005 01:18:22 +0800, snnn <sn*****@gmail.com.haha.removeme> wrote:
int a[4]={1,2,3,4}; std::set<int> s(a,a+4);
Shouldn't this be: std::set<int> s(a,a+3); ??
That would only consume 3 elements of 's'.
Of course, you are right about this. I really need to RTFM some
more...
--
Bob Hairgrove No**********@Home.com
Bob Hairgrove wrote: On Wed, 05 Jan 2005 15:36:30 -0500, Victor Bazarov <v.********@comAcast.net> wrote:
Note that s is non-const...
What difference would that make? Values (r-values) used to initialise the elements of the set<> cannot transfer their const-ness, can they?
The subject line says it all: "which type should "std::set::begin() const" return?"
Answer: std::set::const_iterator (which it does).
The OP seems to think it doesn't.
Well, yes. I just was curious on your 'notice that s is non-const'
comment placed right after another comment about the initialisation
of 's'. It shouldn't matter whether 's' is const or not when 's'
is initialised, no? I mean, it will be initialised just as well if
it were const...
The second param is a past-the-end iterator
Whether s is const or non-const,a set should never return a non-const
iterator.We can never modify a set by a iterator pointing to it's
element.Because a set must be a sorted container.You can insert and
remove element into/off it,but never manual modify it.
"snnn" <sn*****@gmail.com> wrote... Whether s is const or non-const,a set should never return a non-const iterator.We can never modify a set by a iterator pointing to it's element.Because a set must be a sorted container.You can insert and remove element into/off it,but never manual modify it.
I think you need to submit this as a proposal to comp.std.c++.
snnn wrote: Whether s is const or non-const,a set should never return a non-const iterator.We can never modify a set by a iterator pointing to it's element.Because a set must be a sorted container.You can insert and remove element into/off it,but never manual modify it.
Untrue.
class X {
int a;
int b;
public:
X(int a, int b) : a(a),b(b) {}
bool operator<( X const& rhs ) { return a<rhs.a; }
};
std::set<X> sox = foo();
sox.begin()->b=0; // safe
Regards,
Michiel Salters
Have you got the rigth answer??
I've been thinking about it since we last meet. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Me |
last post by:
Hi, I would like learn from people with experience in C++, which of the
following styles of way to construct "get/set" member functions would be the
best in terms of usability, speed, et cetera.
...
|
by: CupOfWater |
last post by:
Hi, I'm getting some errors using remove_if that I can not fix at all.
Let me paste my code and also the error here. I went on IRC and
people were mostly no help. The compiler is g++ 3.2.3. ...
|
by: Michael Klatt |
last post by:
I am trying to write an iterator for a std::set that allows the
iterator target to be modified. Here is some relvant code:
template <class Set> // Set is an instance of std::set<>
class...
|
by: Markus Dehmann |
last post by:
I have a two different value types with which I want to do similar
things: store them in the same vector, stack, etc. Also, I want an <<
operator for each of them.
class Value{}; // this would...
|
by: Joe Gottman |
last post by:
What are the advantages and disadvantages of the tree-based std::set versus
the hash-based tr1::unordered_set?
set advantages:
1) iterators remain valid after insert and erase (except for...
|
by: chrisstankevitz |
last post by:
This code does not compile on gcc 3.4.4. Should it?
Thanks for your help,
Chris
//================
#include <set>
int main()
|
by: danibe |
last post by:
I never had any problems storing pointers in STL
containers such std::vector and std::map. The benefit
of storing pointers instead of the objects themselves
is mainly saving memory resources and...
|
by: Austin |
last post by:
Here is my program:
class Test {
private:
int _num;
};
int main()
{
set<TestaSet;
|
by: desktop |
last post by:
In the C++ standard page 472 it says that you can construct a std::set
in linear time if the constructor gets a sorted sequence of elements.
But how is this possible when insert takes logarithmic...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: DJRhino |
last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer)
If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _
310030356 Or 310030359 Or 310030362 Or...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
| |