jois.de.vivre@gmail.com writes:
Quote:
I'm having some unexpected behavior regarding clear() in the map
container. I have the following code:
>
/// --- begin code
>
#include <map>
#include <vector>
#include <iostream>
#include <boost/shared_ptr.hpp>
using namespace std;
>
class test
{
public:
~test()
{
cout << __FUNCTION__ << endl;
}
};
>
int main(int argc, char *argv[])
{
typedef boost::shared_ptr<testpTest;
vector<pTestvec;
map<int, vector<pTest m;
>
{
pTest t(new test); /* (1) */
for (int i=0; i<10; i++)
vec.push_back(t);
m[0] = vec;
/* t is destroyed here, releasing one ref. to (1) */
}
>
cout << "Clearing Map" << endl;
/* all other refs. to (1) should be destroyed here */
m.clear(); /* (2) */
cout << "Done" << endl;
return EXIT_SUCCESS;
}
>
//--- end code
> Quote: |
From what I understand, map::clear() should call the destructor of each
| vector object it contains, which in turn should call the destructor of
each shared_ptr object. After (2) there should be no more references
to the "new test" at (1),
|
Here's where you're mistaken. You
A) Make a test and stick it in a smart pointer. Ref count, 1
B) Push_back that smart pointer onto a std::vector 10 times. Ref
count 11.
C) Stick that vector into a std::map. That's a copy operation, so
I'd expect the ref count to be 21. (I think this is what you missed.)
D) End of the code block. pTest goes out of scope, dropping the
ref count to 20.
D) Clear the map. That destroys the contained vector (a copy of
the one you manipulated earlier), dropping the ref count to 10.
E) Print "Done".
E) End of main(). The vector goes out of scope, dropping the ref
count to 0.
Quote:
so I am expecting to see the following output:
>
Clearing Map
~test
Done
|
Try clearing the vector before printing "Done" and see what happens.
----------------------------------------------------------------------
Dave Steffen, Ph.D.
Software Engineer IV Disobey this command!
Numerica Corporation - Douglas Hofstadter
dgsteffen at numerica dot us