[C++] Problems with boost::ptr_vector and boost::any - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T20:25:35Zhttp://stackoverflow.com/feeds/question/880463http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/880463/c-problems-with-boostptrvector-and-boostany0[C++] Problems with boost::ptr_vector and boost::anyRicardo Ferreira2009-05-19T00:36:49Z2009-05-19T01:07:10Z
<p>Hey all,</p>
<p>ok, so I got a doubt, I want to know if this is possible:</p>
<p>I'm using a database, with generic data (strings, ints, bools, etc...). Whenever an object is constructed or a member of an object is modified, I have to query the database with the specific action (SELECT or UPDATE).
First of all, this isn't a DB related question, my real problem is that I have a ptr_vector which holds boost::any's pointers to members of the object. In code something like this:</p>
<pre><code>class Enemy{
private:
//some private data...
public:
auto_ptr<int> ID_Enemy;
auto_ptr<string> Enemy_Name;
//miscellaneous methods...
};
</code></pre>
<p>then I pass the members I want to modify to a function of another miscellaneous class which takes as argument a boost::any*:</p>
<pre><code>misc_class.addValues((boost::any*)(ID_Enemy.get()));
misc_class.addValues((boost::any*)(Enemy_Name.get()));
</code></pre>
<p>that same class accepts the any*, and does the following:</p>
<pre><code>auto_ptr<boost::any> val2(val); //being val, the passed any*
Enemy_Values.push_back(val2);
</code></pre>
<p>Enemy_Values is a ptr_vector. So when I access this misc_class which has Enemy_Values as member, I want to change the value to which an auto_ptr inside is pointing:</p>
<pre><code>misc_class.Enemy_Values[0] = (boost::any)(69);
</code></pre>
<p>And here, I get a violation error. I've tried many things, and someone told me that I shouldn't be using containers of auto_ptr or converting back and forth with boost::any. Is this that I am doing possible, or there is a better and more intuitive way?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/880463/c-problems-with-boostptrvector-and-boostany/880521#8805211Answer by Iraimbilanja for [C++] Problems with boost::ptr_vector and boost::anyIraimbilanja2009-05-19T01:01:04Z2009-05-19T01:01:04Z<p><code>(boost::any*)(ID_Enemy.get())</code> performs a <code>reinterpret_cast</code> since you are casting unrelated pointer types. This means you get an invalid pointer to an <code>any</code>, pointing to what is really an integer.
Instead, construct a temporary boost::any object and pass it by reference to addValues:</p>
<pre><code>misc_class.addValues(boost::any(ID_Enemy.get());
</code></pre>
<p>Your use of <code>auto_ptr</code> is in fact incorrect: <code>auto_ptr</code> deletes objects on the freestore but here we're dealing with locals instead. <code>addValues</code> merely needs to push the <em>value</em> of the <code>any</code> object into the vector:</p>
<pre><code>Enemy_Values.push_back(val);
</code></pre>
<p>... and Enemy_Values should just be a std::vector.</p>
<p>You <em>could</em> do this with a ptr_vector and freestore-allocated <code>boost::any</code> objects, but that would be more complicated than necessary.</p>
http://stackoverflow.com/questions/880463/c-problems-with-boostptrvector-and-boostany/880538#8805380Answer by Skrymsli for [C++] Problems with boost::ptr_vector and boost::anySkrymsli2009-05-19T01:07:10Z2009-05-19T01:07:10Z<p>auto_ptr has a <a href="http://aszt.inf.elte.hu/~gsd/halado%5Fcpp/ch05s03.html" rel="nofollow">number of problems</a>. Since you are already using boost, why not use boost::shared_ptr instead?</p>