getting a normal ptr from shared_ptr ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T03:21:07Zhttp://stackoverflow.com/feeds/question/505143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/505143/getting-a-normal-ptr-from-sharedptr1getting a normal ptr from shared_ptr ?acidzombie242009-02-02T22:01:46Z2009-09-28T09:10:31Z
<p>i have something like shared_ptr t(makeSomething(), mem_fun(&Type::deleteMe))
i now need to call C styled func that require a pointer to Type. How do i get it from shared_ptr?</p>
http://stackoverflow.com/questions/505143/getting-a-normal-ptr-from-sharedptr/505152#50515212Answer by Adam Rosenfield for getting a normal ptr from shared_ptr ?Adam Rosenfield2009-02-02T22:04:50Z2009-02-02T22:04:50Z<p>Use the <a href="http://www.boost.org/doc/libs/1_37_0/libs/smart_ptr/shared_ptr.htm#get" rel="nofollow"><code>get()</code></a> method:</p>
<pre><code>boost::shared_ptr<foo> foo_ptr(new foo());
foo *raw_foo = foo_ptr.get();
c_library_function(raw_foo);
</code></pre>
<p>Make sure that your <code>shared_ptr</code> doesn't go out of scope before the library function is done with it -- otherwise badness could result, since the library may try to do something with the pointer after it's been deleted. Be especially careful if the library function maintains a copy of the raw pointer after it returns.</p>
http://stackoverflow.com/questions/505143/getting-a-normal-ptr-from-sharedptr/505273#5052730Answer by Michael Burr for getting a normal ptr from shared_ptr ?Michael Burr2009-02-02T22:41:11Z2009-02-02T22:54:54Z<p>Another way to do it would be to use a combination of the <code>&</code> and <code>*</code> operators:</p>
<pre><code>boost::shared_ptr<foo> foo_ptr(new foo());
c_library_function( &*foo_ptr);
</code></pre>
<p>While personally I'd prefer to use the <code>get()</code> method (it's really the right answer), one advantage that this has is that it can be used with other classes that overload <code>operator*</code> (pointer dereference), but do not provide a <code>get()</code> method. Might be useful in generic class template, for example.</p>