<div>holy! you learn something every day. you can call the destructor of an object (before destruction)</div>
<div>&nbsp;</div>
<div>this is a trap for me because i dont clean up my variables in destructors.</div>
<div>
<p>class A {<br>public:<br>&nbsp; A() {<br>&nbsp; counter = 0;<br>}<br>~A() {<br>&nbsp;&nbsp;counter++;<br>&nbsp;&nbsp;std::cout &lt;&lt; &quot;~A(): &quot; &lt;&lt; counter &lt;&lt; std::endl;<br>}<br>int counter;<br>};</p>
<p>int main(int argc, char* argv[])<br>{<br>&nbsp;A a;<br>&nbsp;a.~A();<br>&nbsp;return 0;<br>}</p></div>
<div>NOTE: destructor gets called twice.</div>
<div>(so it's probably a good idea to NULL pointers in destructors)<br><br>&nbsp;</div>
<div><span class="gmail_quote">On 7/11/06, <b class="gmail_sendername">bringiton bringiton</b> &lt;<a href="mailto:kneeride@gmail.com">kneeride@gmail.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div><span class="q">
<div>&gt;&gt;just look at the include files:</div>
<div>&nbsp;</div></span></div>
<div>
<div>i looked at the header, but got a little confused.</div>
<div>i don't see how you can call a destruct of a a memory space that still exists. ie a C version of a vector.</div>
<div>&nbsp;</div>
<div>shared_ptr&lt;int&gt; list[1024];</div>
<div>int n = 0;</div>
<div>&nbsp;</div>
<div>// add an item</div>
<div>shared_ptr&lt;int&gt; newItem(new int(1));</div>
<div>list[n++] = newItem;</div>
<div>&nbsp;</div>
<div>// remove the tail item</div>
<div>n--;</div>
<div>// destructor never called</div>
<div>&nbsp;</div>
<div>is it possible to call a destructor of an object that exists?</div>
<div>what then happens then the object goes out of scope? the destructor will be called twice.</div>
<div>&nbsp;</div>
<div>(or maybe i am completely missing the point)</div>
<div>&nbsp;</div>
<div>BTW: not sure if above code compiles (did it in my head)</div></div>
<div><span class="e" id="q_10c58bd9693f8dd4_2">
<div><br>&nbsp;</div>
<div><span class="gmail_quote">On 7/10/06, <b class="gmail_sendername">Boris Breidenbach</b> &lt;<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Boris.Breidenbach@physik.uni-erlangen.de" target="_blank">
Boris.Breidenbach@physik.uni-erlangen.de</a>&gt; wrote:</span> 
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">On Mon, Jul 10, 2006 at 03:58:19PM +1000, bringiton bringiton wrote:<br>&gt; This question is based on curiosity. How does std::vector::pop_back() call 
<br>&gt; the destructor of the item getting removed?<br>&gt;<br>&gt; i understood std::vector to be a contigious array of memory, therefore an<br>&gt; item's memory does not go out of scope when being popped. ie the item goes 
<br>&gt; out of scope when the entire array goes out of scope.<br><br>just look at the include files:<br><br>bits/stl_vector.h says:<br>void<br>&nbsp;&nbsp;&nbsp;&nbsp; pop_back()<br>&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --this-&gt;_M_impl._M_finish;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; std::_Destroy(this-&gt;_M_impl._M_finish); 
<br>&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>so the destructor is called in std::_Destroy.&nbsp;&nbsp;Which can be found in<br>bits/stl_construct.h:<br>/**<br>&nbsp;&nbsp;* @if maint<br>&nbsp;&nbsp;* Destroy the object pointed to by a pointer type.<br>&nbsp;&nbsp;* @endif<br>&nbsp;&nbsp;*/<br>template&lt;typename _Tp&gt; 
<br>&nbsp;&nbsp; inline void<br>&nbsp;&nbsp; _Destroy(_Tp* __pointer)<br>&nbsp;&nbsp; { __pointer-&gt;~_Tp(); }<br><br>It just calls the destructor.<br><br>_______________________________________________<br>Boost-users mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Boost-users@lists.boost.org" target="_blank">
Boost-users@lists.boost.org</a><br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://lists.boost.org/mailman/listinfo.cgi/boost-users" target="_blank">http://lists.boost.org/mailman/listinfo.cgi/boost-users
</a><br></blockquote></div><br></span></div></blockquote></div><br>