User MSalters - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T12:52:58Z http://stackoverflow.com/feeds/user/15416 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1913548/program-a-system-with-c/1913567#1913567 -1 Answer by MSalters for Program a system with C++ MSalters 2009-12-16T09:57:51Z 2009-12-16T09:57:51Z <p>You can write all possible programs in C++. In fact, you can write most programs in most languages, especially if you exclude performance concerns. This concept is known as "Turing completeness"</p> http://stackoverflow.com/questions/1907012/which-stl-containers-require-the-use-of-cadapt/1908140#1908140 2 Answer by MSalters for Which STL containers require the use of CAdapt? MSalters 2009-12-15T15:17:55Z 2009-12-15T15:17:55Z <blockquote> <p>What is the full list of STL containers with which CAdapt should be used?</p> </blockquote> <p>None. Implementations should assume operator&amp; is overloaded, and use the correct expression <code>&amp;reinterpret_cast&lt;char&amp;&gt;(obj)</code></p> <p>Now, there is another question that you didn't ask:</p> <blockquote> <p>My VC++ STL implementation doesn't agree. It does provide <code>CAdapt</code> as a workaround. What is the full list of its containers with which CAdapt should be used?</p> </blockquote> <p>Top of my head, I'd day <code>vector&lt;T&gt;</code> (stores them as a <code>T[]</code> so reasonably needs arithmetic on them) and deque (stores them as multiple smaller <code>T[]</code>s so same rationale). list, map, set, multiset and multimap all work on nodes, so they themselves already wrap each object.</p> http://stackoverflow.com/questions/1852302/a-proposal-to-add-statemachine-support-to-c-like-language/1908081#1908081 1 Answer by MSalters for A proposal to add statemachine support to C++-like language MSalters 2009-12-15T15:07:47Z 2009-12-15T15:07:47Z <p>Read your proposal, have the following comments:</p> <ol> <li><p>There's actually no keyword to declare and define an actual state machine! Do you assume a single global state machine (and thus a single global state)? How does that relate to <code>__active__</code> ?</p></li> <li><p>The closest comparable construct in C++ is actually the enum. Why not extend it?</p></li> <li><p>There seems to be some connection between defined events and states, but I fail to see how it's implemented. </p></li> <li><p>Why are threads and timers needed at all? Some use cases of state machines may benefit from them, but a good proposal should keep these seperate. Most importantly this should allow the use of standard C++0x threads.</p></li> </ol> <p>Personally, I would extend the enum syntax:</p> <pre><code>enum Foo { red, blue, green; /* Standard C++ so far - defines states. State list ends with a ; not a , */ Foo() { *this = red; } // Reuse ctor syntax, instead of __initial__ ~Foo() { } // reuse dtor syntax, instead of __onexit__ void Bar() {/**/} // Defines an event, no return value. Doesn't need keyword __event__ }; </code></pre> <p>It follows naturally that you can now declare your events in a header, and define them in a .cpp file. I don't even need to suggest the syntax here, any C++ programmer can guess that at this point. Add a bit of inheritance syntax for combined states:</p> <pre><code>enum DrawingObject : public Shape, public Color { /** } // allows (red &amp;&amp; circle) </code></pre> <p>and you're pretty much at the point where your proposal is, without any new keywords, all by reusing an already familiar syntax.</p> http://stackoverflow.com/questions/1902976/msvc-any-way-to-check-if-function-is-actually-inlined/1906674#1906674 0 Answer by MSalters for MSVC - Any way to check if function is actually inlined? MSalters 2009-12-15T11:01:00Z 2009-12-15T11:01:00Z <p>Generate a "MAP" file. This gives you the addresses of all non-inlined functions. If your function appears in this list, it's not inlined, otherwise it's either inlined or optimized out entirely (e.g. when it's not called at all).</p> http://stackoverflow.com/questions/1904796/specializing-functions-on-stl-style-container-types/1906624#1906624 1 Answer by MSalters for specializing functions on stl style container types MSalters 2009-12-15T10:51:12Z 2009-12-15T10:51:12Z <p>STLcontainers by definition have a typedef <code>iterator</code>, with 2 methods <code>begin()</code> and <code>end()</code> retruning them. This range <em>is</em> what the container contains. If there's no such range, it's not a container in the STL sense. So I'd sugegst something along the line of (not checked)</p> <pre><code>template&lt;typename CONTAINER&gt; void f(CONTAINER&amp; c, typename CONTAINER::iterator begin = c.begin(), typename CONTAINER::iterator end = c.end()) { } </code></pre> http://stackoverflow.com/questions/1906059/random-characters-in-pseudocode/1906461#1906461 0 Answer by MSalters for Random Characters in pseudocode MSalters 2009-12-15T10:22:12Z 2009-12-15T10:22:12Z <p>The easiest way is to realize that there are 26 alphanumeric characters. So, generate a <em>number</em> between 1 and 26 (or 0 and 25), and convert that number to a letter between A and Z. Repeat 200 times to get a string.</p> http://stackoverflow.com/questions/1906342/windows-add-security-restrictions-to-current-process/1906388#1906388 0 Answer by MSalters for Windows: add security restrictions to current process? MSalters 2009-12-15T10:08:18Z 2009-12-15T10:08:18Z <p>The .NET concept you're looking for is called <a href="http://msdn.microsoft.com/en-us/library/5ba4k1c5.aspx" rel="nofollow">"permissions"</a>. There is an additional level of protection offered by Windows itself, <a href="http://msdn.microsoft.com/en-us/magazine/cc163823.aspx" rel="nofollow">"privileges"</a>. </p> http://stackoverflow.com/questions/1906238/macro-definition-for-message-mapping/1906353#1906353 2 Answer by MSalters for Macro definition for message mapping MSalters 2009-12-15T10:02:00Z 2009-12-15T10:02:00Z <p>The "illegal escape sequence" part tells me that you have traling whitespace after your <code>\</code>. Therefore the next lines are not part of the macro.</p> http://stackoverflow.com/questions/1900514/what-is-the-appropriate-english-language-terminology-for-referring-to-the-object/1900574#1900574 3 Answer by MSalters for What is the appropriate English language terminology for referring to the object in C++? MSalters 2009-12-14T12:10:39Z 2009-12-14T13:17:35Z <p>I tend to use the same convention in documentation as I use in code: I leave it implicit. E.g. "Add another thing and return the sum". </p> <p>When I need to be explicit, it's for comments read by other programmers. They know C++, <code>*this</code> is easily understood. E.g. "Add another Thing to <code>*this</code> by adding all members except Thing::foo which will become 0 (See bug #42)"</p> http://stackoverflow.com/questions/1900632/how-to-detect-if-page-load-in-newly-started-browser-process-fails/1900830#1900830 0 Answer by MSalters for How to detect if page load in newly-started browser process fails? MSalters 2009-12-14T13:08:18Z 2009-12-14T13:08:18Z <p>Don't start the page in this form. Instead, create a local <code>http://localhost:&lt;port&gt;/wrapper.html</code> which loads <code>http://localhost/page.aspx</code> and then either <code>http://localhost:&lt;port&gt;/pass.html</code> or <code>http://localhost:&lt;port&gt;/fail.html</code>. localhost: is a trivial HTTP server interface implemented by your app.</p> <p>The idea is that Javascript gives you an API <em>inside</em> the browser, which is far more standard than the APIs on the <em>outside</em> of browsers. Since the Javascript on wrapper.html comes from the same server and even port as the subsequent resources, this should satisfy the same-origin policies in current browsers.</p> http://stackoverflow.com/questions/1900577/how-can-i-catch-moment-when-someone-kill-java-exe-process/1900712#1900712 2 Answer by MSalters for How can I catch moment when someone kill java.exe process? MSalters 2009-12-14T12:41:43Z 2009-12-14T12:41:43Z <p>some practical solutions have already been suggested, but another is to ping-pong a "last status" message between <strong>2</strong> applications that monitor each other. When one dies, the other one writes the last received message to a log file. Users can't kill both processes quickly enough with Task Manager.</p> http://stackoverflow.com/questions/1900614/ui-question-designing-for-widescreen-and-43-aspect-ratios-simultaneously/1900684#1900684 1 Answer by MSalters for UI question: Designing for widescreen and 4:3 aspect ratios simultaneously? MSalters 2009-12-14T12:37:44Z 2009-12-14T12:37:44Z <p>The obvious answer seems to be an offset. Since 4x3 is 16x9, it appears you want a 16x9 screen to have 2x9 bands to the left and the right. Hence, the X offset should be (2/16) * width.</p> <p>For 16x10 screens, the factor is slightly more complicated: 4x3 is 13.33x10, so you have edges of width 1.67, and the X offset should be (1.67/16) * width = (5/48)* width.</p> http://stackoverflow.com/questions/1890742/why-is-it-elif-and-not-elsif-in-c-c/1899847#1899847 0 Answer by MSalters for Why is it #elif and not #elsif in C/C++ MSalters 2009-12-14T09:19:31Z 2009-12-14T09:19:31Z <p>For a history of C by one of its creators, see <a href="http://cm.bell-labs.com/cm/cs/who/dmr/chist.html" rel="nofollow">http://cm.bell-labs.com/cm/cs/who/dmr/chist.html</a>. The preprocessor was considered a seperate step, fitting in with UNIX's tradition of providing independent building blocks.</p> http://stackoverflow.com/questions/1629317/memory-mapped-files-optional-write-possible/1650322#1650322 1 Answer by MSalters for Memory mapped files optional write possible? MSalters 2009-10-30T15:00:16Z 2009-12-07T18:09:25Z <p>Possible, but non-trivial.</p> <p>You have to understand memory mapped basics, and the difference between the three modes of memory-mapped files. Both set aside a part of your virtual address space and create a mapping entry in an internal table. No physical RAM is initially allocated. Hence, when you DO try to access the memory, the CPU faults and the OS has to fix up. It does so by copying the file contents to RAM and mapping the RAM to your process, at the faulting address.</p> <p>Now, the difference between the three modes is how the descriptors are set on the mapped pages. In all cases you get read access on the pages. (The first mode). However, if you ask for write access and subsequently write to it, on your first write the page is marked as writeable and dirty. It can then be written back to the original file, at the discretion of the OS (Second mode). Finally, it's possible to get copy-on-write semantics. You still start out with only read access to the page in memory. When you write to it, the CPU still faults and the OS needs to fix it up. With copy-on-write, that fixup is done by setting the backing store of the changed page to the page file, instead of the original mapped file.</p> <p>So, in your case you want to use copy-on-write mode. If the user decides to discard the modifications, no problem. You simply discard the memory mapping. All pages that were modified in memory, and were backed by the page file are also discarded.</p> <p>If the user does decide to save, you've got a slightly harder task. You now need to figure out which parts of the file have changed. Those changes are in memory, and you need to reapply those to the source file. You can do this with <a href="http://msdn.microsoft.com/en-us/library/aa366549.aspx" rel="nofollow">Page Guards</a>. So, when the user decides to save, copy all modified pages to a separate memory block, remap the (unchanged) file for write, and apply the changes.</p> http://stackoverflow.com/questions/1855472/antlr-c-target-with-visual-studio-2008/1859427#1859427 1 Answer by MSalters for antlr : C++ target with visual studio 2008 MSalters 2009-12-07T11:27:27Z 2009-12-07T11:27:27Z <p>The phrase "C code compatible with C++" means that the code generation targets the common subset of C and C++. Hence, it does not use the token <code>class</code> which has different meanings in C and C++, etctera. But it can use <code>int</code> and <code>foo</code>, where C and C++ agree.</p> <p>As a result, the code generated can be compiled by both C and C++ compilers. Visual Studio contains both (via <code>/TC</code> and <code>/TP</code> flags) so you could use either mode.</p> http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1859372#1859372 1 Answer by MSalters for How to output IEEE-754 format integer as a float MSalters 2009-12-07T11:14:25Z 2009-12-07T11:14:25Z <p>swegi had the right direction, but missed one character. The correct way is </p> <pre><code>long l = 1084227584L float f = reinterpret_cast&lt;float&amp;&gt;(l); </code></pre> http://stackoverflow.com/questions/1858606/how-can-i-make-a-rectangle-on-a-cluster-of-tiny-edges-after-opencvs-canny-detect/1859202#1859202 0 Answer by MSalters for how can I make a rectangle on a cluster of tiny edges after opencv's canny detection? MSalters 2009-12-07T10:39:40Z 2009-12-07T10:39:40Z <p>The obvious thing to do first is discarding any edges that don't belong to a rectangle. The best case is if your rectangles are all oriented the same direction as the camera. In that case, discard any edge that's not North-South or East-West. If the rectangles all have the same orientation, but the camera doesn't, find the dominant direction module 90 degrees, and discard any outlier edges. The worst case is when the rectangles all have different orientations. In that case, you'd still expect edge direcions to cluster: for every edge, there should be at least one parallel and two orthogonal edges. Discard any unmatched edge. (<em>This assumes you find edges more than a few pixels long; it's hard to deterimine the angle of shorter edges.</em>)</p> <p>After you've eliminated spurious edges by direction, the next step is to see whether you can connect them. You should still have them grouped by angle from the previous step. Now, assume that edges which are aligned belong to the same rectangle, and replace them with a single longer edge. This may cause fake edges between aligned rectangles. This is probably not a major problem, but if it is, fix it with a validation step at the end.</p> <p>It's likely your edge finder will not work well near corners, because the real edge changes direction abruptly there. Hence, you should extend the edges you've found by a few pixels.</p> <p>The extended edges will now produce a whole bunch of crossings. Again, take advantage of the fact that you've ordered your edges by direction. Just check for crossings of almost-orthogonal edges. If you find them, create a "crossing" object and associate it with the two edges. They're the tentative corners.</p> <p>Once you've doe this, look for edges which have at least 2 crossings and see if you can match them up. Depending on the quality of your data, you may want to decide you've found a rectangle when you have 3 or 4 corners. If you find too many crossings on a single edge, you might have connected the edges of two aligned rectangles. This can be especially hard if you have rectangles that are aligned on both sides:</p> <pre><code> _ _ |_|_| </code></pre> http://stackoverflow.com/questions/1858806/calling-win32-api-sendmessage-in-c-richtextbox-to-copy-selected-text-returns-one/1859065#1859065 -1 Answer by MSalters for Calling Win32 API SendMessage in C# richtextbox to copy selected text returns one character less.. MSalters 2009-12-07T10:12:37Z 2009-12-07T10:12:37Z <p>SendMessage should actually be </p> <pre><code>public static extern int SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam); </code></pre> <p>wParam and lParam are in fact inputs, not outputs. Hence, you're sending garbage, and lucky to get something back.</p> http://stackoverflow.com/questions/1858963/vectors-virtual-segmentation-fault-on-function-call/1859017#1859017 3 Answer by MSalters for Vectors, "virtual", Segmentation Fault on function call MSalters 2009-12-07T10:03:15Z 2009-12-07T10:03:15Z <p>Quoting:</p> <pre><code>Sphere s(Point(0.0,0.0,-50.0), 40.0); shapes.push_back(&amp;s); </code></pre> <p>You're putting the address of a local variable in a global collection. Two lines later, <code>s</code> goes out of scope and <code>&amp;s</code> becomes invalid.</p> http://stackoverflow.com/questions/1845908/checking-for-intersection-points-between-two-rectangles/1845988#1845988 1 Answer by MSalters for Checking for intersection points between two rectangles? MSalters 2009-12-04T10:00:42Z 2009-12-04T10:00:42Z <p>Two rectangles overlap is there is at least one interior point X,Y common to both. Let the first rectable be <code>{T1, L1, B1, R1}</code> and the second <code>{T2, L2, B2, R2}</code> (top, left, bottom, right). Now it follows that <code>(X&gt;L1)</code> and <code>(X&lt;R1)</code> and <code>(Y&gt;T1)</code> and <code>(Y&lt;B1)</code>, and similarly for rectangle 2. From <code>(X&gt;L1)</code> and <code>(X&lt;R2)</code> it follows that <code>(L1&lt;R2)</code>. Similarly, <code>(L2&lt;R1)</code>, <code>(T1&lt;B2)</code> and <code>(T2&lt;B1)</code>. </p> <p>These 4 conditions are thus necessary. It's not directly obvious that they are also sufficient, but that too is the case. </p> http://stackoverflow.com/questions/1832785/bootstrap-hard-disk-access/1833783#1833783 1 Answer by MSalters for Bootstrap Hard disk access MSalters 2009-12-02T15:50:35Z 2009-12-02T15:50:35Z <p>Not that I'm aware of. Have you seen <a href="http://gaztek.sourceforge.net/osdev/boot/index.html" rel="nofollow">http://gaztek.sourceforge.net/osdev/boot/index.html</a> ? That has a list of examples, at least one of which claims to be reading a file from "C:\" (presumably a DOS-formatted harddisk)</p> http://stackoverflow.com/questions/1833088/what-gotchas-have-you-discovered-programming-sms-alerts/1833689#1833689 1 Answer by MSalters for What Gotchas have you discovered programming SMS/Alerts? MSalters 2009-12-02T15:38:06Z 2009-12-02T15:38:06Z <p>SMS is a telco service, not an Internet service. That comes with some different rules.</p> <p>For starters, many endpoints are billed/billable, and have contracts with a single service provider. This will include all of your use cases.</p> <p>Secondly, billing is a contract matter both on the sending and the receiving side. You simply cannot state as a sender that "Host pays", unless you restrict yourself to sending SMS to specific countries. USA is the most famous exception. "Receiver pays" is even worse. Due to SMS spam, telco's will usually allow this kind of traffic only when you have a contract with them. </p> <p>Third-party SMS operators can deal with many of these problems. It's very easy for them to be more service-oriented than the average telco. They might even be able to deliver international SMS for you. </p> <p>SMS tends to buffer in the network itself, not necessarily the email gateway. In individual cases, the difference is probably invisible to you. But you would still have delays even if you had a direct SS7 link to the telco.</p> <p>Real telco's have test gateways, but the terms of use for those I can't give you. The idea though is definitely to be able to test you app at lower costs.</p> <p>SMS uses its own alphabet, a rather nasty multi-septet encoding (7/14/21 bits!) The quoted 160 character limit comes from a 140 byte payload. This could also be coded as 70 UTF-16 characters.</p> http://stackoverflow.com/questions/1833318/not-able-execute-createprocess-with-photoviewer-dll/1833500#1833500 1 Answer by MSalters for Not able execute CreateProcess with PhotoViewer.dll MSalters 2009-12-02T15:10:11Z 2009-12-02T15:10:11Z <p>A Win32 executable has extension .EXE; a DLL is not an executable. CreateProcess cannot create a process with just a .DLL. The missing .EXE is "rundll32.exe". </p> <p>However, that's not what you are after: you want the Shell behavior. <code>ShellExecuteEx()</code> is usually the most convenient function. <code>AssocQueryString()</code> may be appropriate in this case, with the right flags: <code>ASSOCSTR_EXECUTABLE</code> to get the executable in case it's not yet running, and <code>ASSOCSTR_DDEAPPLICATION</code> etc. in case the application already runs. </p> http://stackoverflow.com/questions/1786231/programming-languages-that-allow-unicode-in-the-names-of-functions-variables-clas/1832417#1832417 0 Answer by MSalters for Programming languages that allow Unicode in the names of functions/variables/classes? MSalters 2009-12-02T11:43:24Z 2009-12-02T11:43:24Z <p>Even C++ does ! The list is really to big to collect here.</p> <p>Although I expect Unicode to be hell for languages that claim to be case-insensitive. After the statement <code>Σ = 0</code>, which of the following statements is true? <code>ς == 0</code> or <code>σ == 0</code> ? And assuming it would be the last, does that mean that the statement <code>σ = 0</code> implies that <code>ς == 0</code> ? (Σ is the Greek uppercase Sigma; ς and σ are its <em>two</em> lowercases). </p> http://stackoverflow.com/questions/1832304/avoid-printing-unicode-replacement-character-in-java/1832341#1832341 3 Answer by MSalters for Avoid printing unicode replacement character in Java MSalters 2009-12-02T11:26:36Z 2009-12-02T11:26:36Z <p>There is no Unicode character U+FFFD. Hence, the code is logically incorrect. The intended use of the Unicode Replacement Symbol is to be substitued for bad input (such as <code>(char)65533</code>). </p> <p>How to fix it: don't put junk in strings. Strings are for text. Bytes are for random binary data.</p> http://stackoverflow.com/questions/1831353/the-speed-of-net-in-numerical-computing/1832321#1832321 0 Answer by MSalters for The speed of .NET in numerical computing MSalters 2009-12-02T11:23:09Z 2009-12-02T11:23:09Z <p>Since the (native) Intel MKL is doing the math, you're actually not doing the math in managed code. You're merely using the memory manager from .Net, so the outcomes are easily used by .Net code.</p> http://stackoverflow.com/questions/1832160/can-i-use-c-templates-to-generate-unicode-ansi-variants-of-a-function-rather-t/1832206#1832206 4 Answer by MSalters for Can I use C++ templates to generate Unicode/ANSI variants of a function, rather than using the preprocessor? MSalters 2009-12-02T11:01:48Z 2009-12-02T11:01:48Z <p>Roger Pate is entire correct about the interface. You shouldn't bother with A and W suffixes. However, this still leaves the problem of implementation. As you supected, templates are the correct solution. And since you don't need the different names, you can leave out the typedefs. You would just have</p> <p><code>template &lt;typename TSTRING&gt; void MyFunctionName (TSTRING const&amp;);</code></p> http://stackoverflow.com/questions/1831991/c-safe-way-to-cast-an-integer-to-a-pointer/1832059#1832059 1 Answer by MSalters for C++: Safe way to cast an integer to a pointer MSalters 2009-12-02T10:35:38Z 2009-12-02T10:35:38Z <p>The safe way is to keep a record of all live MyClass objects. It's best to keep this record in a <code>std::set&lt;void*&gt;</code>, which means you can easily add, remove and test elements. </p> <p>The reason for storing them as <code>void*</code>s is that you don't risk nastyness like creating unaligned <code>MyClass*</code> pointers from your integers.</p> http://stackoverflow.com/questions/1829905/what-is-the-copy-constructor-bug-causing-parsing-errors/1831813#1831813 0 Answer by MSalters for What is the copy constructor bug causing parsing errors? MSalters 2009-12-02T09:46:19Z 2009-12-02T09:46:19Z <p><code>parent.children.push_back(expr)</code> copies the expression. Hence, it calls <code>AST::AST(AST const&amp;)</code>. A bug in that could certainly cause the problem you see. However, without the code, we can't find bugs in it.</p> http://stackoverflow.com/questions/1826159/swapping-two-variable-value-without-using-3rd-variable/1826377#1826377 1 Answer by MSalters for Swapping two variable value without using 3rd variable MSalters 2009-12-01T14:04:41Z 2009-12-01T14:04:41Z <p>Stupid questions deserve appropriate answers:</p> <pre><code>void sw2ap(int&amp; a, int&amp; b) { register int temp = a; // ! a = b; b = temp; } </code></pre> <p>The only good use of the <code>register</code> keyword.</p> http://stackoverflow.com/questions/1913548/program-a-system-with-c/1913630#1913630 Comment by MSalters on Program a system with C++ MSalters 2009-12-16T12:22:27Z 2009-12-16T12:22:27Z Actually, C++ does have an offical Technical Report that DOES specify exactly such an low-level interface to HW. http://stackoverflow.com/questions/1907921/can-using-0l-to-initialize-a-pointer-in-c-cause-problems/1909620#1909620 Comment by MSalters on Can using 0L to initialize a pointer in C++ cause problems? MSalters 2009-12-16T10:37:09Z 2009-12-16T10:37:09Z I personally prefer <code>if (!some&#95;variable) { }</code> http://stackoverflow.com/questions/1907921/can-using-0l-to-initialize-a-pointer-in-c-cause-problems/1907966#1907966 Comment by MSalters on Can using 0L to initialize a pointer in C++ cause problems? MSalters 2009-12-16T10:34:47Z 2009-12-16T10:34:47Z Overload resolution. Given <code>f(int)</code> and <code>f(int&#42;)</code>, <code>f(NULL)</code> calls <code>f(int)</code> but <code>f(nullptr)</code> calls <code>f(int&#42;)</code>. http://stackoverflow.com/questions/1910733/how-can-i-map-an-int-to-a-corresponding-string-in-c-c Comment by MSalters on how can I map an int to a corresponding string in C/C++ MSalters 2009-12-16T10:27:10Z 2009-12-16T10:27:10Z I assume &quot;20 numbers&quot;, i.e. ints. You'd need Unicode to get more digits than '0'-'9'. http://stackoverflow.com/questions/1911117/is-there-a-use-for-uninitialized-pointers-in-c-or-c Comment by MSalters on Is there a use for uninitialized pointers in C or C++? MSalters 2009-12-16T10:24:22Z 2009-12-16T10:24:22Z Actually, those load-in-place techniques are hacks. If C++ was different, there would be different hacks. E.g. cast raw memory, then memcpy() the vtable pointers in. http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910875#1910875 Comment by MSalters on [C++] Why aren't pointers initialized with NULL by default? MSalters 2009-12-16T10:22:31Z 2009-12-16T10:22:31Z It doesn't break compatibility. The idea has been considered in conjunction with &quot;int* x = __uninitialized&quot; - safety by default, speed by intent. http://stackoverflow.com/questions/1913337/replacement-for-vector-accepting-non-standard-constructable-and-not-assignable-ty/1913435#1913435 Comment by MSalters on Replacement for vector accepting non standard constructable and not assignable types MSalters 2009-12-16T09:54:27Z 2009-12-16T09:54:27Z No problem: all built-in containers share the assignable requirement. Hence, you need a non-standard one. Boost is the obvious candidate - almost standard, widely tested, liberal license. http://stackoverflow.com/questions/1913337/replacement-for-vector-accepting-non-standard-constructable-and-not-assignable-ty Comment by MSalters on Replacement for vector accepting non standard constructable and not assignable types MSalters 2009-12-16T09:51:15Z 2009-12-16T09:51:15Z No, you're entirely right. GMan mistakenly confused the pimpl idiom with a common reason to use the idiom. http://stackoverflow.com/questions/1912165/best-worst-examples-of-undefined-behavior-in-c-or-c/1912190#1912190 Comment by MSalters on Best/worst examples of undefined behavior in C or C++? MSalters 2009-12-16T09:48:06Z 2009-12-16T09:48:06Z Actually, it's Windows that requires this. POSIX requires the reverse cast. <code>dlsym()</code> returns a <code>void&#42;</code> which actually points to a function. http://stackoverflow.com/questions/1912165/best-worst-examples-of-undefined-behavior-in-c-or-c/1912295#1912295 Comment by MSalters on Best/worst examples of undefined behavior in C or C++? MSalters 2009-12-16T09:45:49Z 2009-12-16T09:45:49Z Assumes that sizeof(int*)==sizeof(void*). If sizeof(void*)&gt;sizeof(int*) you have bigger issues. http://stackoverflow.com/questions/1907012/which-stl-containers-require-the-use-of-cadapt/1908140#1908140 Comment by MSalters on Which STL containers require the use of CAdapt? MSalters 2009-12-16T09:41:29Z 2009-12-16T09:41:29Z @Motti: yes, the idea is from ISO C++ WG paper N1324 by Jens Maurer, in response to CWG DR273 (<code>offsetof</code> has the same problem). http://stackoverflow.com/questions/1907668/what-do-i-need-to-know-about-memory-in-c/1907741#1907741 Comment by MSalters on What do I need to know about memory in C++? MSalters 2009-12-15T14:44:34Z 2009-12-15T14:44:34Z No, for C++ they only matter when you're writing a replacement <code>operator new</code>. That is definitely advanced. http://stackoverflow.com/questions/1900924/behaviour-of-stdpartition-when-called-on-empty-container/1901043#1901043 Comment by MSalters on Behaviour of std::partition when called on empty container? MSalters 2009-12-15T11:56:23Z 2009-12-15T11:56:23Z There should be a statement somewhere that says the iterator arguments to <code>partition()</code> represent a range. If not, a DR would be in order. http://stackoverflow.com/questions/1900924/behaviour-of-stdpartition-when-called-on-empty-container/1900938#1900938 Comment by MSalters on Behaviour of std::partition when called on empty container? MSalters 2009-12-15T11:53:46Z 2009-12-15T11:53:46Z YUp: the reason is that there is the range [first, last) is empty. So a statement like &quot;for any iterator j in the range [first, i) <code>pred(j)!= false</code> holds because there are no iterators j at all, and thus none for which <code>pred(j)==false</code>. http://stackoverflow.com/questions/1900802/where-does-the-c-compiler-start/1900818#1900818 Comment by MSalters on Where does the C++ compiler start? MSalters 2009-12-15T11:18:57Z 2009-12-15T11:18:57Z And in fact there might not even be a compilation order with distributed compiling. You can't say a.cpp compiled before or after b.cpp, if it happened on a different machine.