User Mark Ransom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:15:54Z http://stackoverflow.com/feeds/user/5987 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it 8 Is it good practice to NULL a pointer after deleting it? Mark Ransom 2009-12-18T22:48:05Z 2009-12-18T23:39:13Z <p>I'll start out by saying, <strong>use smart pointers and you'll never have to worry about this.</strong></p> <p>What are the problems with the following code?</p> <pre><code>Foo * p = new Foo; // (use p) delete p; p = NULL; </code></pre> <p>This was sparked by <a href="http://stackoverflow.com/questions/1930459/c-delete-it-deletes-my-objects-but-i-can-still-access-the-data/1930520#1930520">an answer and comments</a> to another question. One comment from <a href="http://stackoverflow.com/users/69307/neil-butterworth">Neil Butterworth</a> generated a few upvotes:</p> <blockquote> <p>Setting pointers to NULL following delete is not universal good practice in C++. There are times when it is a good thing to do, and times when it is pointless and can hide errors.</p> </blockquote> <p>There are plenty of circumstances where it wouldn't help. But in my experience, it can't hurt. Somebody enlighten me.</p> http://stackoverflow.com/questions/1930549/what-to-do-while-waiting-for-a-build/1930557#1930557 12 Answer by Mark Ransom for What to do while waiting for a build? Mark Ransom 2009-12-18T20:40:36Z 2009-12-18T20:40:36Z <p>StackOverflow.com is always good for a couple minutes diversion.</p> http://stackoverflow.com/questions/1929588/x86-howto-catch-data-alignment-faults-aka-sigbus-on-sparc/1929615#1929615 0 Answer by Mark Ransom for x86: howto catch data-alignment faults (aka SIGBUS on sparc) Mark Ransom 2009-12-18T17:29:48Z 2009-12-18T17:29:48Z <p>Intel built in unaligned transfers from the start - it was one of the selling points when x86 was brand new. I understand your reasons for wanting to trap unaligned access, but I don't think it's possible.</p> http://stackoverflow.com/questions/1929209/when-overriding-a-virtual-member-function-why-does-the-overriding-function-alway/1929404#1929404 4 Answer by Mark Ransom for When overriding a virtual member function, why does the overriding function always become virtual? Mark Ransom 2009-12-18T16:46:33Z 2009-12-18T16:46:33Z <p>Just because the class is forced to have a vtable, doesn't mean the compiler is forced to use it. If the type of the object is known statically, the compiler is free to bypass the vtable as an optimization. For example, B::foo will probably be called directly in this situation:</p> <pre><code>B b; b.foo(); </code></pre> <p>Unfortunately the only way I know to verify this is to look at the generated assembly code.</p> http://stackoverflow.com/questions/1926206/human-readable-guid/1926226#1926226 3 Answer by Mark Ransom for Human Readable GUID Mark Ransom 2009-12-18T04:08:19Z 2009-12-18T04:08:19Z <p>AOL used to use a random combination of two words for the CDs they sent out. You can take the same approach, and just increase the number of words to get the odds that you require.</p> http://stackoverflow.com/questions/1923599/pointer-vs-handles-in-c-are-the-terms-used-to-convey-separate-things/1923676#1923676 2 Answer by Mark Ransom for pointer vs handles in C (are the terms used to convey separate things?) Mark Ransom 2009-12-17T18:30:58Z 2009-12-17T18:30:58Z <p>"Handle" is a logical term, not a physical one. It's meant as a proxy to a physical object to code that has more intimate knowledge of the object. A pointer to a struct is one such proxy, but there are many other possibilites.</p> http://stackoverflow.com/questions/1922188/visual-c-2005-icon-saved-to-file-is-different-to-resource-in-editor/1922566#1922566 0 Answer by Mark Ransom for Visual C++ 2005: Icon saved to file is different to resource in editor Mark Ransom 2009-12-17T15:35:16Z 2009-12-17T15:35:16Z <p>I've had the same problem, and it has nothing to do with different icon formats in the file - you can entirely replace the .ico file and you'll still have this problem. My solution was to completely remove all the extra files built by Visual Studio like the .aps and .suo files. I'm not exactly sure which one caches the icon.</p> http://stackoverflow.com/questions/1912165/best-worst-examples-of-undefined-behavior-in-c-or-c 3 Best/worst examples of undefined behavior in C or C++? [closed] Mark Ransom 2009-12-16T03:56:14Z 2009-12-16T09:54:36Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/908872/whats-the-worst-example-of-undefined-behaviour-actually-possible">What&rsquo;s the worst example of undefined behaviour actually possible?</a><br> <a href="http://stackoverflow.com/questions/367633/what-are-all-the-common-undefined-behaviour-that-c-programmer-should-know-about">What are all the common undefined behaviour that c++ programmer should know about?</a><br> <a href="http://stackoverflow.com/questions/376338/what-are-the-common-undefined-behaviours-that-java-programmers-should-know-about">What are the common undefined behaviours that Java Programmers should know about</a> </p> </blockquote> <p>There are lots of parts of the C and C++ standards that are not completely specified, because to do so might exclude some oddball architecture. Relying on the behavior of your particular compiler and CPU is generally frowned upon, for good reason. On the other hand some behaviors are so universal that you could easily get away with relying on them, even if it is technically undefined.</p> <p>For example, initializing a pointer to 0xDEADBEEF could lead to bad results on a processor that traps on invalid pointer addresses. But I've never used such a processor, and I'll bet that you haven't either. I'm sure plenty of people have caught a bug or two with this technique, without any winged monkeys taking flight from their nostrils.</p> <p>On the other hand, if you had old Mac code that depended on the endianness of the processor, you probably lived to regret that decision.</p> <p>I'd love to see some real world examples of both good and bad reliance on unspecified behavior. It will be interesting to see which type gets the most votes.</p> <p>There was a similar question with an entirely different emphasis: <a href="http://stackoverflow.com/questions/908872/whats-the-worst-example-of-undefined-behaviour-actually-possible">What’s the worst example of undefined behaviour actually possible?</a>. I'm asking for examples where you are <em>relying</em> on the undefined behavior.</p> http://stackoverflow.com/questions/1912199/better-random-algorithm/1912219#1912219 0 Answer by Mark Ransom for Better random algorithm? Mark Ransom 2009-12-16T04:10:04Z 2009-12-16T04:10:04Z <p>The lowest bits of standard random number generators aren't very random, this is a well known problem.</p> <p>I'd look into the <a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/random/index.html" rel="nofollow">boost random number library</a>.</p> http://stackoverflow.com/questions/1912191/compiling-multiple-languages-together/1912210#1912210 4 Answer by Mark Ransom for Compiling multiple languages together Mark Ransom 2009-12-16T04:07:53Z 2009-12-16T04:07:53Z <p>Yes, it's possible, but a lot depends on the specific languages. For example, calling C functions or C++ classes from Python is done routinely.</p> http://stackoverflow.com/questions/1911117/is-there-a-use-for-uninitialized-pointers-in-c-or-c/1911130#1911130 8 Answer by Mark Ransom for Is there a use for uninitialized pointers in C or C++? Mark Ransom 2009-12-15T23:10:28Z 2009-12-15T23:21:38Z <p>Initializing a pointer takes some time. Most of the time you shouldn't care about that, but there are rare occasions when it would make a difference. One of the guiding principles of C (and by extension C++) is <strike>never make you pay for something you might not need</strike> Don't pay for what you don't use.</p> <p>Another rare case might come up in embedded programming, where a variable corresponds to a hardware register. Putting a value in the register will start the hardware performing some action which might be detremental.</p> http://stackoverflow.com/questions/1910469/mfcs-getclientrect-and-movewindow-dont-preserve-size/1910481#1910481 3 Answer by Mark Ransom for MFC's GetClientRect and MoveWindow don't preserve size? Mark Ransom 2009-12-15T21:21:44Z 2009-12-15T21:21:44Z <p>The client rect doesn't include the window borders, but MoveRect expects a rectangle that includes the borders. Use GetWindowRect instead.</p> http://stackoverflow.com/questions/1909967/what-does-msvc-6-throw-when-an-integer-divide-by-zero-occurs/1910105#1910105 0 Answer by Mark Ransom for What does msvc 6 throw when an integer divide by zero occurs? Mark Ransom 2009-12-15T20:18:15Z 2009-12-15T20:18:15Z <p>This article claims to have a way to convert a structured exception to a C++ exception using the <a href="http://msdn.microsoft.com/en-us/library/aa298592(VS.60).aspx" rel="nofollow">_set_se_translator</a> function.</p> <p><a href="http://www.codeproject.com/KB/cpp/seexception.aspx" rel="nofollow">http://www.codeproject.com/KB/cpp/seexception.aspx</a></p> http://stackoverflow.com/questions/1903066/wrapping-a-propertysheet-how-to-handle-callbacks/1904904#1904904 0 Answer by Mark Ransom for Wrapping a PropertySheet; how to handle callbacks? Mark Ransom 2009-12-15T02:46:36Z 2009-12-15T02:46:36Z <p>You've already admitted "I can execute no code between the creation and destruction of the actual window". It seems that a global variable wouldn't be a terrible hack.</p> http://stackoverflow.com/questions/1903962/passing-a-pointer-to-a-base-class-to-derived-classs-member-functions-in-c/1903993#1903993 1 Answer by Mark Ransom for Passing a pointer to a base class to derived class's member functions in C++ Mark Ransom 2009-12-14T22:34:19Z 2009-12-14T22:34:19Z <p>You can use <code>dynamic_cast</code> to cast a base pointer to one of the derived types. Just be sure to properly handle the case where dynamic_cast can't cast the pointer.</p> <p>I should add that this is a smelly way to do this. If the objects really are comparable, they should be comparable at the base class level.</p> http://stackoverflow.com/questions/1892229/c-iterator-confusion/1892248#1892248 2 Answer by Mark Ransom for c++ iterator confusion Mark Ransom 2009-12-12T04:08:43Z 2009-12-12T04:08:43Z <p>x is an iterator, which acts like a pointer - it points to a list. So you can only use functions which are members of std::list.</p> http://stackoverflow.com/questions/1890605/ghost-borders-ringing-when-resizing-in-gdi/1890750#1890750 3 Answer by Mark Ransom for Ghost-borders ('ringing') when resizing in GDI+ Mark Ransom 2009-12-11T20:41:45Z 2009-12-11T20:41:45Z <p>Try:</p> <pre><code>g.CompositingMode = CompositingMode.SourceCopy; </code></pre> <p>From my answer <a href="http://stackoverflow.com/questions/1861305/c-resized-images-have-black-borders/1861575#1861575">here</a>, corrected for syntax.</p> <p>The resizing is creating partial transparency around the border. Setting <code>SourceCopy</code> tells it to replace that partially transparent pixel with a fully opaque one.</p> http://stackoverflow.com/questions/1885494/crecordset-open-only-retrevies-one-record/1885509#1885509 2 Answer by Mark Ransom for CRecordset.Open only retrevies one record! Mark Ransom 2009-12-11T02:44:59Z 2009-12-11T02:44:59Z <p>That's a limitation of the way CRecordset works. You'll need to call MoveNext until IsEOF returns TRUE, then the record count will be accurate.</p> http://stackoverflow.com/questions/1875947/benefits-of-declaring-a-function-as-inline/1876056#1876056 5 Answer by Mark Ransom for Benefits of declaring a function as "inline"? Mark Ransom 2009-12-09T18:59:02Z 2009-12-09T18:59:02Z <p>There are two reasons to use the <code>inline</code> keyword. One is an optimization hint, and you can safely ignore it; your compiler is like to ignore it too. The other reason is to allow a function to exist in multiple translation units, and that usage is strictly necessary. If you put a function into a .h header file for example, you'd better declare it inline.</p> http://stackoverflow.com/questions/1875863/should-you-include-a-much-requested-feature-that-is-fundamentally-wrong/1876036#1876036 4 Answer by Mark Ransom for Should you include a much-requested feature that is fundamentally wrong? Mark Ransom 2009-12-09T18:55:00Z 2009-12-09T18:55:00Z <p>If this feature runs counter to the philosophy of your product, it indicates that the product does not conform to the mental model of your users. The consequences of that are much larger than just a single missing feature. You need to get inside your users heads, and figure out how to adjust your model to their expectations, or guide their expectations towards your model.</p> <p>Put enough thought into this and it could become a great opportunity for you.</p> http://stackoverflow.com/questions/1875046/display-preceeding-zeros-in-csv-file-when-viewing-in-excel/1875253#1875253 0 Answer by Mark Ransom for display preceeding zeros in csv file when viewing in excel Mark Ransom 2009-12-09T16:55:04Z 2009-12-09T16:55:04Z <p>Rather than writing your data as a CSV file, use the <a href="http://en.wikipedia.org/wiki/SYmbolic_LinK_(SYLK)" rel="nofollow">SYLK (Symbolic Link)</a> format instead. This format includes information about the style of a column, so that Excel will not try to auto-guess the type of data.</p> <p>The easiest way to get started with this format is to export a small file from Excel and use that as a template.</p> http://stackoverflow.com/questions/1875046/display-preceeding-zeros-in-csv-file-when-viewing-in-excel/1875083#1875083 0 Answer by Mark Ransom for display preceeding zeros in csv file when viewing in excel Mark Ransom 2009-12-09T16:31:11Z 2009-12-09T16:31:11Z <p>Excel tries very hard to determine the type of value it's importing. If it looks like a number, it will treat it like a number, and drop all the leading zeros as it reads it in. There's no way to get them back once they're lost.</p> <p>You might try to import the file using the wizard that lets you set the data type for each column.</p> http://stackoverflow.com/questions/1869701/drawing-text-on-a-framebuffer-in-linux-from-c/1871689#1871689 2 Answer by Mark Ransom for Drawing text on a framebuffer in Linux from C Mark Ransom 2009-12-09T05:05:51Z 2009-12-09T05:05:51Z <p>I don't have any information specific to frame buffers, but I do have an interesting way of encoding a font.</p> <p>If you have an application that can write to the <a href="http://en.wikipedia.org/wiki/X%5FBitMap" rel="nofollow">XBM format</a>, you can encode a font just by creating an image containing all the characters. The XBM file can be included as a C or C++ file, and by using the proper offsets you can easily access a single character. Make sure each character starts at an X-coordinate divisible by 8, because the image is coded as one bit per pixel; anything that doesn't line up on an 8-bit boundary will need masking and shifting.</p> http://stackoverflow.com/questions/1871212/expiration-dates/1871400#1871400 1 Answer by Mark Ransom for Expiration dates? Mark Ransom 2009-12-09T03:22:23Z 2009-12-09T03:22:23Z <p>What is your goal here? If it's to stop all theft, good luck with that; all protection schemes will be broken eventually. If it's to keep the honest people honest, don't worry about them setting the clock back - it's enough of a hassle that nobody will do it, and those honest folk will pay up immediately.</p> http://stackoverflow.com/questions/1870341/resizing-columns-algorithm/1870450#1870450 1 Answer by Mark Ransom for Resizing Columns Algorithm Mark Ransom 2009-12-08T22:49:07Z 2009-12-08T22:49:07Z <p>Pseudocode:</p> <pre><code>w = NewWidth n = ColumnWidths.count sort(ColumnWidths, ascending) while n &gt; 1 and ColumnWidths[n-1] &gt; (w/n): w = w - ColumnWidths[n-1] n = n - 1 for i = 0 to n-1: ColumnWidths[i] = w / n </code></pre> <p>You'll need to add some code to redistribute any roundoffs from the w/n calculation, but I think this will do it.</p> http://stackoverflow.com/questions/1869776/iterating-over-same-type-struct-members-in-c/1869809#1869809 2 Answer by Mark Ransom for Iterating over same type struct members in C Mark Ransom 2009-12-08T21:00:56Z 2009-12-08T21:00:56Z <p>The easiest way would be to create a union, one part which contains each member individually and one part which contains an array. I'm not sure if platform-dependent padding might interfere with the alignment.</p> http://stackoverflow.com/questions/1858430/what-was-your-favorite-assembly-language/1864480#1864480 5 Answer by Mark Ransom for What was your favorite assembly language? Mark Ransom 2009-12-08T03:59:32Z 2009-12-08T14:37:34Z <p>I've used assembly on 6 different processors. My favorite by far was the Motorola 68000/68020. I don't have any reason to use it any more, but it was glorious in its regularity - if you thought an instruction should exist, it probably did. Addressing modes up the wazoo, and 32-bit addressing long before its time. Just enough registers to be useful, without being overpowering.</p> <p>Somewhere I probably still have the source that I wrote to a full monitor with disassembler.</p> http://stackoverflow.com/questions/1842377/double-buffer-common-controls/1864286#1864286 0 Answer by Mark Ransom for Double buffer common controls Mark Ransom 2009-12-08T02:55:44Z 2009-12-08T02:55:44Z <p>You're not using WS_EX_TRANSPARENT, are you? That will cause underlying windows to be painted before the controls, and when the bottom window erases you get flicker.</p> http://stackoverflow.com/questions/1863153/why-unsigned-int-0xffffffff-is-equal-to-int-1/1863165#1863165 17 Answer by Mark Ransom for why unsigned int 0xFFFFFFFF is equal to int -1? Mark Ransom 2009-12-07T21:50:07Z 2009-12-07T22:02:03Z <p>It's called two's complement. To make a negative number, invert all the bits then add 1. So to convert 1 to -1, invert it to 0xFFFFFFFE, then add 1 to make 0xFFFFFFFF.</p> <p>As to why it's done this way, <a href="http://en.wikipedia.org/wiki/Twos%5Fcomplement" rel="nofollow">Wikipedia</a> says:</p> <blockquote> <p>The two's-complement system has the advantage of not requiring that the addition and subtraction circuitry examine the signs of the operands to determine whether to add or subtract. This property makes the system both simpler to implement and capable of easily handling higher precision arithmetic.</p> </blockquote> http://stackoverflow.com/questions/1861654/is-there-a-way-to-prevent-a-header-defined-c-function-from-being-treated-as-inl/1861754#1861754 1 Answer by Mark Ransom for Is there a way to prevent a header defined c++ function from being treated as inlined. Mark Ransom 2009-12-07T17:58:51Z 2009-12-07T17:58:51Z <p>Defining functions in the header gives the compiler <em>the choice</em> of making them inline. It will do so if it thinks the result will be more efficient, which might change based on whether you asked for the fastest or smallest code. The function might get defined in multiple object files, but the linker is supposed to detect that and eliminate the duplicates.</p> http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931149#1931149 Comment by Mark Ransom on Is it good practice to NULL a pointer after deleting it? Mark Ransom 2009-12-18T23:16:05Z 2009-12-18T23:16:05Z I agree that there are times when it won't help, but you seemed to imply that it could be actively harmful. Was that your intent, or did I read it wrong? http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931145#1931145 Comment by Mark Ransom on Is it good practice to NULL a pointer after deleting it? Mark Ransom 2009-12-18T23:09:07Z 2009-12-18T23:09:07Z So you're making the argument that there shouldn't have been a raw pointer in the first place, and anything involving said pointer shouldn't be blessed with the term &quot;good practice&quot;? Fair enough. http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931134#1931134 Comment by Mark Ransom on Is it good practice to NULL a pointer after deleting it? Mark Ransom 2009-12-18T23:04:30Z 2009-12-18T23:04:30Z I've read through a few of the results, and I couldn't find anything contradicting my view that nulling a pointer is a good thing, not a bad thing. http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it Comment by Mark Ransom on Is it good practice to NULL a pointer after deleting it? Mark Ransom 2009-12-18T22:57:16Z 2009-12-18T22:57:16Z @Andr&#233; Pena, it's undefined. Often it's not even repeatable. You set the pointer to NULL to make the error more visible when debugging, and maybe to make it more repeatable. http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931132#1931132 Comment by Mark Ransom on Is it good practice to NULL a pointer after deleting it? Mark Ransom 2009-12-18T22:53:56Z 2009-12-18T22:53:56Z Yes indeed, that's the best option. Doesn't answer the question though. http://stackoverflow.com/questions/1930549/what-to-do-while-waiting-for-a-build/1930557#1930557 Comment by Mark Ransom on What to do while waiting for a build? Mark Ransom 2009-12-18T21:25:53Z 2009-12-18T21:25:53Z You'll notice that most of my answers aren't the encyclopedic type. I really admire the people who have the time and talent for that. http://stackoverflow.com/questions/1930459/c-delete-it-deletes-my-objects-but-i-can-still-access-the-data/1930520#1930520 Comment by Mark Ransom on C++ delete - It deletes my objects but I can still access the data? Mark Ransom 2009-12-18T20:37:29Z 2009-12-18T20:37:29Z Even if you don't use a macro, it's good practice to set a pointer to NULL immediately after freeing it. It's a good habit to get into, preventing these sorts of misunderstandings. http://stackoverflow.com/questions/1930439/understanding-24-bit-png-generated-with-photoshop/1930450#1930450 Comment by Mark Ransom on Understanding 24 bit PNG generated with Photoshop Mark Ransom 2009-12-18T20:31:33Z 2009-12-18T20:31:33Z @Jos&#233;, you're asking for 6 bits per channel. That format does not exist in PNG, nor in any other format I'm aware of. http://stackoverflow.com/questions/1929106/inserting-lines-of-pixels-into-an-image-quickly Comment by Mark Ransom on Inserting lines of pixels into an image quickly Mark Ransom 2009-12-18T16:19:04Z 2009-12-18T16:19:04Z How long does it take just to read the image in and write it back out, without doing any image modifications? That might be the bottleneck. http://stackoverflow.com/questions/1926355/making-photoshop-like-drop-shadows-in-a-game/1926395#1926395 Comment by Mark Ransom on Making Photoshop-like drop shadows in a game Mark Ransom 2009-12-18T05:13:20Z 2009-12-18T05:13:20Z And use a multiplying blend mode, if you have the choice. http://stackoverflow.com/questions/1917718/are-multiple-conditional-operators-in-this-situation-a-good-idea/1918541#1918541 Comment by Mark Ransom on Are multiple conditional operators in this situation a good idea? Mark Ransom 2009-12-17T17:45:38Z 2009-12-17T17:45:38Z I might even add a /*else*/ comment to the last condition to make it clear what that value represents. http://stackoverflow.com/questions/1904317/c-boost-date-with-format-dd-mm-yyyy Comment by Mark Ransom on C++ Boost date with format dd/mm/yyyy? Mark Ransom 2009-12-17T17:23:13Z 2009-12-17T17:23:13Z Alfredo, if an answer solves a problem for you, the courteous thing to do is to click the checkmark under the answers score, selecting it as the solution to the question. http://stackoverflow.com/questions/1923096/storing-a-million-images/1923152#1923152 Comment by Mark Ransom on Storing a million images Mark Ransom 2009-12-17T17:14:49Z 2009-12-17T17:14:49Z And there are lots of utilities to deal with files and file systems, few to none to deal with files within a database. http://stackoverflow.com/questions/1923096/storing-a-million-images/1923131#1923131 Comment by Mark Ransom on Storing a million images Mark Ransom 2009-12-17T17:10:57Z 2009-12-17T17:10:57Z And +1 for &quot;don't store them all in one directory&quot;. I'm supporting a legacy system that has put over 47000 files on a server in a single folder, and it takes about a minute for Explorer just to open the folder. http://stackoverflow.com/questions/1923096/storing-a-million-images/1923131#1923131 Comment by Mark Ransom on Storing a million images Mark Ransom 2009-12-17T17:08:56Z 2009-12-17T17:08:56Z You might get better distribution by using the last character (or two, or three) rather than the first.