getting a normal ptr from shared_ptr ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T03:21:07Z http://stackoverflow.com/feeds/question/505143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/505143/getting-a-normal-ptr-from-sharedptr 1 getting a normal ptr from shared_ptr ? acidzombie24 2009-02-02T22:01:46Z 2009-09-28T09:10:31Z <p>i have something like shared_ptr t(makeSomething(), mem_fun(&amp;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#505152 12 Answer by Adam Rosenfield for getting a normal ptr from shared_ptr ? Adam Rosenfield 2009-02-02T22:04:50Z 2009-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&lt;foo&gt; 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#505273 0 Answer by Michael Burr for getting a normal ptr from shared_ptr ? Michael Burr 2009-02-02T22:41:11Z 2009-02-02T22:54:54Z <p>Another way to do it would be to use a combination of the <code>&amp;</code> and <code>*</code> operators:</p> <pre><code>boost::shared_ptr&lt;foo&gt; foo_ptr(new foo()); c_library_function( &amp;*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>