C++Talk.NET Forum Index C++Talk.NET
C++ language newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

vector.swap and heap / stack

 
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ language (comp.lang.c++)
View previous topic :: View next topic  
Author Message
Steve Hill
Guest





PostPosted: Wed Aug 20, 2003 2:31 pm    Post subject: vector.swap and heap / stack Reply with quote



Hi,
suppose I have a vector allocated on the heap. Can I use a temporary
(stack based vector) and swap to clear it, or is this unsafe. e.g.

vector<int> *v;
vector<int> tmp;
v->swap(tmp); // is this an unsafe transfer between heap and stack
// or does the allocator handle it safely?


regards,
steve
Back to top
Ivan Vecerina
Guest





PostPosted: Wed Aug 20, 2003 3:00 pm    Post subject: Re: vector.swap and heap / stack Reply with quote



"Steve Hill" <stephen.hill (AT) motorola (DOT) com> wrote

Quote:
suppose I have a vector allocated on the heap. Can I use a temporary
(stack based vector) and swap to clear it, or is this unsafe. e.g.

vector<int> *v;
vector<int> tmp;
v->swap(tmp); // is this an unsafe transfer between heap and stack
// or does the allocator handle it safely?

It is safe.
You could write:
void clearV(vector<int>& c)
{ vector<int>().swap(c); }

And call it with various instances:

auto_ptr<vector p = new vector<int>(4,5);
clearV( *p );

vector<int> l(4,5);
clearV( l );

static vector<int> s(4,5);
clearV( s );

All is safe and sound...

hth
--
http://www.post1.com/~ivec



Back to top
Ivan Vecerina
Guest





PostPosted: Wed Aug 20, 2003 10:33 pm    Post subject: Re: vector.swap and heap / stack Reply with quote



"Mike Wahler" <mkwahler (AT) mkwahler (DOT) net> wrote

Quote:
Yes, this is safe. But note that you needn't define
'tmp', you could use a temporary expression:

v->swap(std::vector<int>());

This line is actually illegal in standard C++, unlike:
std::vector<int>().swap(*v); // this is ok

A temporary can only be bound to a *const* reference,
while the parameter of swap is a non-const reference.
(MSVC typically supports the line you posted as an
extension of the language, but it is non-standard).

Quote:
BTW, why not just use the 'clear()' member function:

v->clear();

Because clear does not free the memory allocated by *v,
while using the swap trick typically will (although
the standard does not formally guarantee this).


Regards,
Ivan
--
http://www.post1.com/~ivec



Back to top
Ivan Vecerina
Guest





PostPosted: Wed Aug 20, 2003 11:37 pm    Post subject: Re: vector.swap and heap / stack Reply with quote

"Mike Wahler" <mkwahler (AT) mkwahler (DOT) net> wrote

Quote:
v->swap(std::vector<int>());

This line is actually illegal in standard C++, unlike:
std::vector<int>().swap(*v); // this is ok

Actually, I didn't mean either one.

I meant:

std::swap(*v, std::vector<int>());

Note that this illegal, for the same reason as the
first example ( v->swap(std::vector<int>()) ).
std::vector<int>() is a temporary, and both of the swap
calls you suggested expect a non-const reference as a
first parameter.
This is unlike the valid option:
std::vector<int>().swap(*v); // this is ok
Here swap is invoked as a member function of the
temporary, which is legal ISO C++.

Quote:
BTW, why not just use the 'clear()' member function:

v->clear();

Because clear does not free the memory allocated by *v,

AFAIK, it *will* free the memory occupied by
its elements (assuming of course that if the
elements are UDT's which manage memory, they do so
correctly).

The standard mandates that v.clear() is equivalent to
calling v.erase( v.begin(), v.end() ) -- in 23.1.1.
The erase function does not cause the vector's memory
to be reallocated (or freed). Its effect is to (23.2.4.3)
invalidate "all the iterators and references *after* the
point of the erase". Which means that the iterator
returned by v.begin() shall not be invalidated by the
call to v.clear().
Basically, clear() will set the *size* of a vector to 0,
but will leave the *capacity* of the vector unchanged.
The memory block that std::vector has allocated to
store its contents will not be freed.

Quote:
while using the swap trick typically will (although
the standard does not formally guarantee this).

Can you elaborate, please?

v1.swap(v2) will exchange the memory blocks that are
associated with the two vectors. This is typically done
by swapping the pointers stored within each vector.

When using: std::vector<int>().swap(*v);
std::vector<int>() typically does not allocate any
memory (its capacity is zero). After the memory blocks
are exchanged, v will receive the block of capacity 0,
and the temporary owns the memory previously associated
with v -- which will be released by the temporary's
destructor.

Well, I hope this is not too confused... it's getting
late here.

Sincerely,
Ivan
--
http://www.post1.com/~ivec



Back to top
Ivan Vecerina
Guest





PostPosted: Fri Aug 22, 2003 3:53 pm    Post subject: Re: vector.swap and heap / stack Reply with quote

"tom_usenet" <tom_usenet (AT) hotmail (DOT) com> wrote

Quote:
On Thu, 21 Aug 2003 01:37:01 +0200, "Ivan Vecerina"
ivecATmyrealboxDOTcom> wrote:

The standard mandates that v.clear() is equivalent to
calling v.erase( v.begin(), v.end() ) -- in 23.1.1.
The erase function does not cause the vector's memory
to be reallocated (or freed). Its effect is to (23.2.4.3)
invalidate "all the iterators and references *after* the
point of the erase". Which means that the iterator
returned by v.begin() shall not be invalidated by the
call to v.clear().

It certainly shall! erase invalidates iterators to erased elements, as
well as iterators to elements after the erase.

From my reading of the standard (see the *after* above),
I believe that the following is legal code:

void deleteOddValues(std::vector<int>& v)
{
std::vector<int>::iterator scan = v.begin();
while( scan != v.end() )
if( *s % 2 ) v.erase(scan);
else ++scan;
}

The iterator from which the erasing starts remains valid
(although it must not be dereferenced if it now equals end()).

By extension, the following should also be ok:
std::vector<int>::iterator b = v.begin();
v.clear();
assert( b == v.end() && b == v.begin() );

Therefore, v.clear() cannot free the memory occupied by
the vector (the allocator's interface doesn't support
in-place shrinking of allocated memory).
And the std::vector<int>().swap(v) trick has its place...


Kind regards,
Ivan
--
http://www.post1.com/~ivec





Back to top
tom_usenet
Guest





PostPosted: Fri Aug 22, 2003 4:51 pm    Post subject: Re: vector.swap and heap / stack Reply with quote

On Fri, 22 Aug 2003 17:53:44 +0200, "Ivan Vecerina"
<ivec (AT) myrealbox (DOT) com> wrote:

Quote:
| It certainly shall! erase invalidates iterators to erased elements, as
| well as iterators to elements after the erase.

From my reading of the standard (see the *after* above),
I believe that the following is legal code:

void deleteOddValues(std::vector<int>& v)
{
std::vector<int>::iterator scan = v.begin();
while( scan != v.end() )
if( *s % 2 ) v.erase(scan);
else ++scan;
}

The iterator from which the erasing starts remains valid
(although it must not be dereferenced if it now equals end()).

By extension, the following should also be ok:
std::vector<int>::iterator b = v.begin();
v.clear();
assert( b == v.end() && b == v.begin() );

Therefore, v.clear() cannot free the memory occupied by
the vector (the allocator's interface doesn't support
in-place shrinking of allocated memory).
And the std::vector<int>().swap(v) trick has its place...

Apologies, you're correct according to the standard, if not according
to my expectations (although they have now been updated).

Tom

Back to top
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ language (comp.lang.c++) All times are GMT
Page 1 of 1

 
 


Powered by phpBB © 2001, 2006 phpBB Group