User Ray - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T13:24:14Zhttp://stackoverflow.com/feeds/user/4546http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48094/c-deleting-a-pointer-to-a-pointer/48670#486703Answer by Ray for C++ deleting a pointer to a pointerRay2008-09-07T18:36:41Z2008-09-07T18:36:41Z<p>I agree with Jason Cohen though we can be a bit clearer on the reason for needing to delete your pointers with the loop. For every "new" or dynamic memory allocation there needs to be a "delete" a memory de-allocation. Some times the "delete" can be hidden, as with smartpointers but it is still there. </p>
<pre><code>int main()
{
int *pI = new int;
int *pArr = new int[10];
</code></pre>
<p>so far in the code we have allocated two chunks of dynamic memory. The first is just a general int the second is an array of ints.</p>
<pre><code> delete pI;
delete [] pArr;
</code></pre>
<p>these delete statements clear the memory that was allocated by the "new"s</p>
<pre><code> int ppArr = new int *[10];
for( int indx = 0; indx < 10; ++indx )
{
ppArr[indx] = new int;
}
</code></pre>
<p>This bit of code is doing both of the previous allocations. First we are creating space for our int in a dynamic array. We then need to loop through and allocate an int for each spot in the array.</p>
<pre><code> for( int indx = 0; indx < 10; ++indx )
{
delete ppArr[indx];
}
delete [] ppArr;
</code></pre>
<p>Note the order that I allocated this memory and then that I de-allocated it in the reverse order. This is because if we were to do the delete [] ppArr; first we would loose the array that tells us what our other pointers are. That chunk or memory would be given back to the system and so can no longer be reliably read.</p>
<pre><code> int a=0;
int b=1;
int c=2;
ppArr = new int *[3];
ppArr[0] = &a;
ppArr[1] = &b;
ppArr[2] = &c;
</code></pre>
<p>This I think should be mentioned as well. Just because you are working with pointers does not mean that the memory those pointers point to was dynamically allocated. That is to say just because you have a pointer doesn't mean it necessarily needs to be delete. The array I created here is dynamically allocated but the pointers point to local instances of ints When we delete this we only need to delete the array.</p>
<pre><code> delete [] ppArr;
return 0;
}
</code></pre>
<p>In the end dynamically allocated memory can be tricky and anyway you can wrap it up safely like in a smart pointer or by using stl containers rather then your own can make your life much more pleasant.</p>
http://stackoverflow.com/questions/47138/who-what-when-where-and-why-should-you-codereview2Who, what, when, where, and why should you codereview?Ray2008-09-06T00:39:01Z2008-09-06T04:33:55Z
<ul>
<li>Who should be reviewed?</li>
<li>Who should do the reviewing?</li>
<li>What code should be reviewed? (all
code? Big changes? Etc)</li>
<li>Where should the review take place?
(Does it have to take place in
person?)</li>
<li>When should reviews take place?
(Incrementally? Before check-ins?)</li>
<li>Why should code be reviewed?</li>
</ul>
<p>I have some opinions about this but I will post an answer with those.</p>
http://stackoverflow.com/questions/17434/when-should-you-use-friend-in-c/44985#449851Answer by Ray for when should you use 'friend' in c++ ?Ray2008-09-04T23:43:46Z2008-09-04T23:43:46Z<p>We had an interesting issue come up at a company I previously worked at where we used friend to decent affect. I worked in our framework department we created a basic engine level system over our custom OS. Internally we had a class structure:</p>
<pre><code> Game
/ \
TwoPlayer SinglePlayer
</code></pre>
<p>All of these classes were part of the framework and maintained by our team. The games produced by the company were built on top of this framework deriving from one of Games children. The issue was that Game had interfaces to various things that SinglePlayer and TwoPlayer needed access to but that we did not want expose outside of the framework classes. The solution was to make those interfaces private and allow TwoPlayer and SinglePlayer access to them via friendship. </p>
<p>Truthfully this whole issue could have been resolved by a better implementation of our system but we were locked into what we had. </p>
http://stackoverflow.com/questions/149033/best-way-to-store-currency-values-in-c/149043#149043Comment by Ray on Best way to store currency values in C++Ray2008-09-30T01:17:26Z2008-09-30T01:17:26Za double can still fail with large numbershttp://stackoverflow.com/questions/67174/find-memory-leaks-caused-by-smart-pointers/72902#72902Comment by Ray on Find memory leaks caused by smart pointersRay2008-09-16T17:15:51Z2008-09-16T17:15:51ZYou could do this in along with the stack dump. This would allow you to pair the outputs via the UID of the refs/derefs