User DrPizza - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:22:17Z http://stackoverflow.com/feeds/user/2131 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1923317/can-bstrs-hold-characters-that-take-more-than-16-bits-to-represent/1923699#1923699 0 Answer by DrPizza for Can BSTR's hold characters that take more than 16 bits to represent? DrPizza 2009-12-17T18:35:30Z 2009-12-17T18:35:30Z <p>Windows has used UTF-16 as its native representation since Windows 2000; prior to that it used UCS-2. UTF-16 supports any Unicode character; UCS-2 only supports the BMP. i.e. it will do the right thing.</p> <p>In general, though, it doesn't matter much, anyway. For most applications strings are pretty opaque, and just passed to some I/O mechanism (for storage in a file or database, or display on-screen, etc.) that will do the Right Thing. You just need to ensure you don't damage the strings at all.</p> http://stackoverflow.com/questions/1915759/forward-declaration-and-typeid/1915803#1915803 0 Answer by DrPizza for Forward declaration and typeid DrPizza 2009-12-16T16:22:07Z 2009-12-16T16:22:07Z <p>Just move the function body after the declaration of B.</p> <pre><code>#include &lt;iostream&gt; #include &lt;typeinfo&gt; struct A { int i_; void Check(); }; struct B : A { double d_; }; void A::Check() { using namespace std; if (typeid (*this) == typeid (B)) { cout &lt;&lt; "True: Same type as B." &lt;&lt; endl; } else { cout &lt;&lt; "False: Not the same type as B." &lt;&lt; endl; } } int main() { A a; B b; a.Check(); // should be false b.Check(); // should be true return 0; } </code></pre> http://stackoverflow.com/questions/1913813/exported-function-names-does-not-contain-argument-list/1915747#1915747 1 Answer by DrPizza for Exported function names does not contain argument list DrPizza 2009-12-16T16:14:20Z 2009-12-16T16:14:20Z <p>It's looking for a mangled name, so you don't want extern "C". </p> <p>?CTC_Cleanup@YAXXZ is using the VC++ name mangling for a function taking void and returning void named CTC_Cleanup.</p> <p>However, you are using g++ 3.x or 4.x, and g++ uses a different mangling scheme that is incompatible.</p> <p>Build your library using VC++, or else figure out how to make g++ use VC++ name mangling.</p> http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910880#1910880 4 Answer by DrPizza for [C++] Why aren't pointers initialized with NULL by default? DrPizza 2009-12-15T22:28:11Z 2009-12-15T22:28:11Z <p>There are vanishingly few situations in which it ever makes sense for a variable to be uninitialized, and default-initialization has a small cost, so why do it?</p> <p>C++ is not C89. Hell, even C isn't C89. You can mix declarations and code, so you should defer declaration until such a time as you have a suitable value to initialize with.</p> http://stackoverflow.com/questions/1907668/what-do-i-need-to-know-about-memory-in-c/1908093#1908093 2 Answer by DrPizza for What do I need to know about memory in C++? DrPizza 2009-12-15T15:10:48Z 2009-12-15T15:10:48Z <p>In other languages you already have to keep track of database connections, window handles, sockets, etc. with mechanisms such as "finally" (in Java) or "using" (in C#). In C++, just add memory to that list. It's not really conceptually any different.</p> http://stackoverflow.com/questions/1903962/passing-a-pointer-to-a-base-class-to-derived-classs-member-functions-in-c/1904003#1904003 1 Answer by DrPizza for Passing a pointer to a base class to derived class's member functions in C++ DrPizza 2009-12-14T22:36:26Z 2009-12-14T22:36:26Z <p>dynamic_cast.</p> <pre><code>struct Base { virtual bool compare(const Base*) = 0; }; struct A : Base { A() { x = 1; } virtual bool compare(const Base* other) { const A* rhs(dynamic_cast&lt;const A*&gt;(other)); if(other == NULL) { return false; } return x == rhs-&gt;x; } private: int x; }; struct B : Base { virtual bool compare(const Base* other) { const B* rhs(dynamic_cast&lt;const B*&gt;(other)); if(other == NULL) { return false; } return c == rhs-&gt;c; } private: char c; }; </code></pre> http://stackoverflow.com/questions/1903066/wrapping-a-propertysheet-how-to-handle-callbacks/1903766#1903766 0 Answer by DrPizza for Wrapping a PropertySheet; how to handle callbacks? DrPizza 2009-12-14T21:54:39Z 2009-12-14T21:54:39Z <p>Awesome, yet another Win32 API that uses callbacks without a user-defined context parameter. It is not the only one, alas. e.g. CreateWindow is bad (it gives you user-defined context, but that context isn't available for the first few window messages), SetWindowsHookEx is even worse (no context at all).</p> <p>The only "solution" that is general-purpose and effective is to emit a small piece of executable code with a 'this' pointer hardcoded. Something like this: <a href="http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/848000817831?r=848000817831#848000817831" rel="nofollow">http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/848000817831?r=848000817831#848000817831</a></p> <p>It's horrible. </p> http://stackoverflow.com/questions/1902976/msvc-any-way-to-check-if-function-is-actually-inlined/1903454#1903454 1 Answer by DrPizza for MSVC - Any way to check if function is actually inlined? DrPizza 2009-12-14T20:59:13Z 2009-12-14T20:59:13Z <p>If you enable warnings C4714, C4710, and C4711, it should give you fairly detailed information about which functions are and aren't inlined.</p> http://stackoverflow.com/questions/1903190/optimal-way-to-perform-a-shift-operation-on-an-array/1903267#1903267 0 Answer by DrPizza for Optimal way to perform a shift operation on an array DrPizza 2009-12-14T20:25:04Z 2009-12-14T20:25:04Z <p>I wonder if perhaps you should be using a std::valarray.</p> http://stackoverflow.com/questions/1902003/does-the-visual-studio-2008-profiler-work-with-unmanaged-c/1902073#1902073 3 Answer by DrPizza for Does the visual studio 2008 profiler work with unmanaged C++? DrPizza 2009-12-14T16:51:45Z 2009-12-14T16:51:45Z <p>Yes, it works with native code.</p> http://stackoverflow.com/questions/1879061/how-to-protect-java-codes-against-decompiler/1879171#1879171 3 Answer by DrPizza for How to protect Java codes against decompiler ? DrPizza 2009-12-10T07:12:01Z 2009-12-10T07:12:01Z <p>The only way that's particularly effective is to offer your program as a web service of some kind, so that the compiled code is never even available on an end-user machine.</p> <p>The next most effective solution, which is one that is widely used in practice, is to make your program so terrible that no-one wants to use it or spend the time reverse engineering it in the first place. I suspect that when this happens it is typically accidental, however.</p> http://stackoverflow.com/questions/1865631/c-loading-an-exe-as-a-dll-local-vftable-problem/1865900#1865900 2 Answer by DrPizza for C++: Loading an EXE as a DLL, local vftable problem DrPizza 2009-12-08T09:52:44Z 2009-12-08T09:52:44Z <p>VC++ strips out reloc info from .exes by default because normally they don't need to be relocatable.</p> <p>You can force it to retain the reloc info with /fixed:no. See: <a href="http://msdn.microsoft.com/en-us/library/w368ysh2.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/w368ysh2.aspx</a></p> http://stackoverflow.com/questions/1860955/why-does-unspecifiedbool-for-classes-which-have-intrinsic-conversions-to-their/1863085#1863085 0 Answer by DrPizza for Why does 'unspecified_bool' for classes which have intrinsic conversions to their wrappered type fail? DrPizza 2009-12-07T21:38:52Z 2009-12-07T21:38:52Z <p>All the idioms suck, really.</p> <p>The best solution is:</p> <p>1) don't have any implicit conversion operators</p> <p>2) have an operator! override with bool return type. Yes, this means that some test might need to be written as if(!!myObject), but that's a small price to pay.</p> http://stackoverflow.com/questions/1857022/limitations-of-peg-grammar-parser-generators/1857056#1857056 1 Answer by DrPizza for Limitations of PEG grammar & parser generators? DrPizza 2009-12-06T23:45:30Z 2009-12-06T23:45:30Z <p>I think the big "problem" with PEGs is that they don't fit into the normal taxonomy of grammars as they operate in a fundamentally different way. Normal grammars are "backwards" in the sense that they describe all the possible sentences (programs) that can be generated. PEGs describe how to parse--they come at the problem from the other end.</p> <p>In my view this is a more natural way to think about the problem, and certainly for any hand-written (recursive-descent) parser I wouldn't do anything else.</p> http://stackoverflow.com/questions/1854290/combine-native-dll-and-assembly-into-a-single-dll/1854378#1854378 1 Answer by DrPizza for combine native dll and assembly into a single dll DrPizza 2009-12-06T04:35:32Z 2009-12-06T04:35:32Z <p>You can do this quite easily, and entirely supportedly, by producing netmodules. Compile your combined C++ and C++/CLI code into a .obj (C++ netmodules are called .obj, C# are called .netmodule) and then link this into your C# project.</p> <p>Details: <a href="http://blogs.msdn.com/junfeng/archive/2005/05/19/420186.aspx" rel="nofollow">http://blogs.msdn.com/junfeng/archive/2005/05/19/420186.aspx</a> Worked example: <a href="http://blogs.msdn.com/junfeng/archive/2005/05/19/420186.aspx" rel="nofollow">http://blogs.msdn.com/junfeng/archive/2005/05/19/420186.aspx</a></p> http://stackoverflow.com/questions/1846987/wpfmoveablecontrol/1847036#1847036 1 Answer by DrPizza for WPF:MoveableControl DrPizza 2009-12-04T13:44:37Z 2009-12-04T13:44:37Z <p>IMO the easiest thing (because of the events it pre-defines) would be to wrap your control in a Thumb object and respond to the DragDelta event; use the HorizontalChange and VerticalChange properties of the DragDeltaEvent to adjust the Top and Left properties of your Thumb.</p> http://stackoverflow.com/questions/1846911/get-the-templated-type-as-a-string/1846964#1846964 0 Answer by DrPizza for Get the templated type as a string DrPizza 2009-12-04T13:32:16Z 2009-12-04T13:32:16Z <p>The preprocessor (i.e. macros) have a stringizing operator that can wrap any token in double quote marks. This can't do what you want, at least as written, because it'll stringize the literal token "Base", and not the substituted-in template parameter.</p> http://stackoverflow.com/questions/1846684/net-com-library-is-not-unloaded-from-c-host-process/1846854#1846854 1 Answer by DrPizza for .NET COM Library is not unloaded from C++ host process. DrPizza 2009-12-04T13:10:22Z 2009-12-04T13:10:22Z <p>I would not support .NET plugins for the reasons I describe in <a href="http://stackoverflow.com/questions/1838856/integrating-into-windows-explorer-context-menu/1838928#1838928">this post</a></p> http://stackoverflow.com/questions/1840516/is-double-buffering-required-with-desktop-composition-enabled/1840607#1840607 1 Answer by DrPizza for Is Double-buffering required with Desktop Composition enabled? DrPizza 2009-12-03T15:25:24Z 2009-12-03T15:25:24Z <blockquote> <p>Is this correct?</p> </blockquote> <p>Yup (which is how the thumbnails can show you parts of the window that are currently obscured).</p> <p>DWM's rendering of the screen is double-buffered. However, if it grabs your buffer betewen erasing and painting... it's going to show up as a visible artefact. So you still need to double buffer. The double buffering occurs on the desktop (i.e. it draws the next desktop view completely and then flips), not on the off-screen buffers that each window is drawn to.</p> http://stackoverflow.com/questions/1838856/integrating-into-windows-explorer-context-menu/1838928#1838928 3 Answer by DrPizza for Integrating into Windows Explorer context menu DrPizza 2009-12-03T10:05:35Z 2009-12-03T10:05:35Z <p>It is, incidentally, not supported to use .NET for shell extensions, due to the current inability to host multiple runtime versions in the same process (.NET 4 will lift this restriction).</p> <p>Consider the case where you have two shell extensions; one for .NET 3.5, one for .NET 1. Which runtime will get loaded into your process? Well, it's more or less random--it depends which shell extension gets loaded first. Sometimes it might be the 2.0 runtime, sometimes it might be the 1.1 runtime.</p> <p>This is also an issue if a .NET program creates common file dialogs; your shell extension may or may not load, and may or may not run with the correct runtime version.</p> <p>As such, if you go down the <a href="http://msdn.microsoft.com/en-us/library/bb776881%28VS.85%29.aspx" rel="nofollow">Shell extension route</a> you should use native C++/COM/Win32.</p> http://stackoverflow.com/questions/1838687/c-can-a-listmyclass-be-seemlessly-cast-to-a-listinterface-or-similar/1838768#1838768 5 Answer by DrPizza for C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar? DrPizza 2009-12-03T09:33:26Z 2009-12-03T09:33:26Z <p>It would be a monumentally bad idea if this were allowed, which is why it isn't. I can add any old IEntity to a <code>List&lt;IEntity&gt;</code> which will blow up if that IEntity can't be cast to T. Whilst all Ts are IEntities, not all IEntities are Ts.</p> <p>This works with arrays because arrays have a deliberate subtyping hole (as they do in Java). Collections do not have a subtyping hole.</p> http://stackoverflow.com/questions/1838655/c-running-total-using-aggregate/1838712#1838712 1 Answer by DrPizza for C# - Running Total using Aggregate() DrPizza 2009-12-03T09:21:50Z 2009-12-03T09:21:50Z <pre><code>array.Aggregate(0, (progress, next) =&gt; { Console.WriteLine(progress + next); return (progress + next); }); </code></pre> <p>Use the version of Aggregate that starts aggregating with a seed value, rather than that starts aggregating with the first pair.</p> http://stackoverflow.com/questions/1838308/whats-c-really-doing-when-i-accidently-use-a-variables-to-declare-array-length/1838579#1838579 3 Answer by DrPizza for What's C++ Really Doing When I Accidently Use a Variables to Declare Array Length? DrPizza 2009-12-03T08:50:32Z 2009-12-03T08:50:32Z <p>It isn't invalid syntax. It's syntactically just fine.</p> <p>It's semantically invalid C++, and rejected by my compiler (VC++). g++ seems to have an extension that allow the use of C99 VLAs in C++.</p> <p>The reason for the question marks is that your array of three characters is not null terminated; it's printing until it finds a null on the stack. The layout of the stack is influenced by the variables declared on the stack. With the array, the layout is such that there's garbage prior to the first null; without the array there isn't. That is all.</p> http://stackoverflow.com/questions/1832704/default-assignment-operator-in-inner-class-with-reference-members/1834914#1834914 0 Answer by DrPizza for Default assignment operator in inner class with reference members DrPizza 2009-12-02T18:36:15Z 2009-12-02T18:36:15Z <p>C++ doesn't have "inner classes", just nested class declarations. "inner classes" are a Java-ism that I don't think are found in other mainstream languages. In Java, inner classes are special because they contain an implicit immutable reference to an object of the containing type. To achieve the equivalent to C++'s nested declarations in Java requires use of static inner classes; static inner classes do not contain a reference to an object of the declaring type.</p> http://stackoverflow.com/questions/1834405/do-potential-exceptions-carry-an-overhead/1834879#1834879 1 Answer by DrPizza for Do potential exceptions carry an overhead? DrPizza 2009-12-02T18:30:16Z 2009-12-02T18:30:16Z <p>It depends; table-based implementations (which I believe modern g++ uses, and which is the strategy used for x64 binaries in Windows) are zero processing overhead for non-thrown exceptions (at the expense of marginally more memory usage). Function-based exception handling (which x86 Windows uses) incurs a small performance hit even for non-thrown exceptions.</p> http://stackoverflow.com/questions/1834723/exceptions-across-module-boundaries-in-c-cli/1834838#1834838 0 Answer by DrPizza for exceptions across module boundaries in C++/CLI DrPizza 2009-12-02T18:25:06Z 2009-12-02T18:25:06Z <p>As long as you're .NET on both sides of the module boundary, exception propagation is safe--that's one of the points of using .NET.</p> http://stackoverflow.com/questions/1825094/is-there-an-automated-program-to-find-c-linker-errors/1826079#1826079 -1 Answer by DrPizza for Is there an automated program to find C++ linker errors? DrPizza 2009-12-01T13:03:15Z 2009-12-01T13:03:15Z <p>What is the error that is causing you so much trouble?</p> http://stackoverflow.com/questions/1826036/minimum-number-of-operations-needed/1826045#1826045 3 Answer by DrPizza for Minimum Number of Operations needed. DrPizza 2009-12-01T12:58:17Z 2009-12-01T12:58:17Z <p>One widely-used measure of this kind of thing is called the Levenshtein distance.</p> <p><a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">http://en.wikipedia.org/wiki/Levenshtein%5Fdistance</a></p> <p>The WP page also mentions/links to other similar concepts. It is essentially a metric of the number of edits needed to turn one word into another.</p> http://stackoverflow.com/questions/1699307/how-to-deal-with-initialization-of-non-const-member-in-const-object/1826018#1826018 0 Answer by DrPizza for How to deal with initialization of non-const member in const object? DrPizza 2009-12-01T12:53:16Z 2009-12-01T12:53:16Z <p>A const int* is not the same as a int* const. When your class is const, you have the latter (constant pointer to mutable integer). What you're passing is the former (mutable pointer to constant integer). The two are not interchangeable, for obvious reasons.</p> http://stackoverflow.com/questions/1825964/c-c-maximum-stack-size-of-program/1825975#1825975 1 Answer by DrPizza for C/C++ maximum stack size of program DrPizza 2009-12-01T12:44:22Z 2009-12-01T12:44:22Z <p>Platform-dependent, toolchain-dependent, ulimit-dependent, parameter-dependent.... It is not at all specified, and there are many static and dynamic properties that can influence it.</p> http://stackoverflow.com/questions/1922455/thread-synchronization-delicate-issue Comment by DrPizza on thread synchronization - delicate issue DrPizza 2009-12-17T15:56:18Z 2009-12-17T15:56:18Z This is just wrong for every reason imaginable. Don't do it. http://stackoverflow.com/questions/1903066/wrapping-a-propertysheet-how-to-handle-callbacks/1903766#1903766 Comment by DrPizza on Wrapping a PropertySheet; how to handle callbacks? DrPizza 2009-12-17T04:57:19Z 2009-12-17T04:57:19Z @Remy: The one that comes to mind is WM_GETMINMAXINFO (there are one or two more). Since typically you want <i>all</i> such messages to be handled by your class instance, it's quite annoying. http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910852#1910852 Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default? DrPizza 2009-12-16T14:18:05Z 2009-12-16T14:18:05Z Lots of things give undefined behaviour. It is hardly significant. http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910852#1910852 Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default? DrPizza 2009-12-16T00:19:37Z 2009-12-16T00:19:37Z @JB: Why create the pointer before you can assign a useful value to it? And why not use RAII to ensure that cleanup occurs properly no matter what? http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910852#1910852 Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default? DrPizza 2009-12-16T00:18:29Z 2009-12-16T00:18:29Z @Neil Butterworth: There are implementations in which you can safely dereference null pointers; they have pages mapped at offset zero. http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910852#1910852 Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default? DrPizza 2009-12-15T22:49:33Z 2009-12-15T22:49:33Z @Neil Butterworth: shit, sometimes you can even dereference them, too. I guess you have a different threshold for usefulness than I do. http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910852#1910852 Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default? DrPizza 2009-12-15T22:29:18Z 2009-12-15T22:29:18Z @Jonathan: but null is trash too. You can't do anything useful with a null pointer. Dereferencing one is just as much an error. Create pointers with proper values, not nulls. http://stackoverflow.com/questions/1907668/what-do-i-need-to-know-about-memory-in-c/1907741#1907741 Comment by DrPizza on What do I need to know about memory in C++? DrPizza 2009-12-15T22:15:32Z 2009-12-15T22:15:32Z They don't matter at all. Even a replacement operator new can call global ::operator new(size_t) to request blocks of memory. You never have to touch malloc(). http://stackoverflow.com/questions/1903066/wrapping-a-propertysheet-how-to-handle-callbacks/1903766#1903766 Comment by DrPizza on Wrapping a PropertySheet; how to handle callbacks? DrPizza 2009-12-15T13:53:22Z 2009-12-15T13:53:22Z ATL uses a similar technique (or at least, it used to, it's possible it doesn't any longer) for setting per-object WndProcs, so it's not unprecedented. MFC does something else altogether that might be worth investigating, but I can't remember off-hand what. Another tack; I think .NET can synthesize suitable code for you, so if you define an appropriate delegate type and use managed code, that'd work. It's a rather roundabout way of generating executable code on-the-fly, mind you! http://stackoverflow.com/questions/1903066/wrapping-a-propertysheet-how-to-handle-callbacks/1903766#1903766 Comment by DrPizza on Wrapping a PropertySheet; how to handle callbacks? DrPizza 2009-12-15T02:43:23Z 2009-12-15T02:43:23Z That would be fantastic if WM_CREATE was the first message you got. It isn't. http://stackoverflow.com/questions/1903813/using-a-set-iterator-in-c Comment by DrPizza on Using a Set Iterator in C++ DrPizza 2009-12-14T22:12:24Z 2009-12-14T22:12:24Z Dammit GMan! Beat me by 9 seconds. http://stackoverflow.com/questions/1903813/using-a-set-iterator-in-c Comment by DrPizza on Using a Set Iterator in C++ DrPizza 2009-12-14T22:11:00Z 2009-12-14T22:11:00Z Instead of showing what the code &quot;looks like&quot;, show us what the code actually is. Also it is preferred to use pre-increment rather than post-increment on iterators, due to post-increment necessitating the creation of a pointless temporary. http://stackoverflow.com/questions/1882003/what-is-the-use-of-long-reverselong-method/1882012#1882012 Comment by DrPizza on what is the use of Long.reverse(long ) method? DrPizza 2009-12-10T16:07:28Z 2009-12-10T16:07:28Z &quot;What's the use of&quot; means &quot;what's the purpose&quot;, not &quot;what does it do&quot;. The question is clear. http://stackoverflow.com/questions/1025589/setting-variable-to-null-after-free/1879191#1879191 Comment by DrPizza on Setting variable to NULL after free ... DrPizza 2009-12-10T15:45:09Z 2009-12-10T15:45:09Z @Chris Lutz: Hogwash. If you write code that frees the same pointer twice, your program has a logical error in it. Masking that logical error by making it not crash doesn't mean that the program is correct: it's still doing something nonsensical. There is no scenario in which writing a double free is justified. http://stackoverflow.com/questions/1025589/setting-variable-to-null-after-free/1879191#1879191 Comment by DrPizza on Setting variable to NULL after free ... DrPizza 2009-12-10T07:25:52Z 2009-12-10T07:25:52Z Except that this is not &quot;safer&quot;, as it masks program errors.