User DrPizza - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:22:17Zhttp://stackoverflow.com/feeds/user/2131http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923317/can-bstrs-hold-characters-that-take-more-than-16-bits-to-represent/1923699#19236990Answer by DrPizza for Can BSTR's hold characters that take more than 16 bits to represent?DrPizza2009-12-17T18:35:30Z2009-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#19158030Answer by DrPizza for Forward declaration and typeidDrPizza2009-12-16T16:22:07Z2009-12-16T16:22:07Z<p>Just move the function body after the declaration of B.</p>
<pre><code>#include <iostream>
#include <typeinfo>
struct A
{
int i_;
void Check();
};
struct B : A
{
double d_;
};
void A::Check()
{
using namespace std;
if (typeid (*this) == typeid (B))
{
cout << "True: Same type as B." << endl;
}
else
{
cout << "False: Not the same type as B." << 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#19157471Answer by DrPizza for Exported function names does not contain argument listDrPizza2009-12-16T16:14:20Z2009-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#19108804Answer by DrPizza for [C++] Why aren't pointers initialized with NULL by default?DrPizza2009-12-15T22:28:11Z2009-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#19080932Answer by DrPizza for What do I need to know about memory in C++?DrPizza2009-12-15T15:10:48Z2009-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#19040031Answer by DrPizza for Passing a pointer to a base class to derived class's member functions in C++DrPizza2009-12-14T22:36:26Z2009-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<const A*>(other));
if(other == NULL) { return false; }
return x == rhs->x;
}
private:
int x;
};
struct B : Base
{
virtual bool compare(const Base* other)
{
const B* rhs(dynamic_cast<const B*>(other));
if(other == NULL) { return false; }
return c == rhs->c;
}
private:
char c;
};
</code></pre>
http://stackoverflow.com/questions/1903066/wrapping-a-propertysheet-how-to-handle-callbacks/1903766#19037660Answer by DrPizza for Wrapping a PropertySheet; how to handle callbacks?DrPizza2009-12-14T21:54:39Z2009-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#19034541Answer by DrPizza for MSVC - Any way to check if function is actually inlined?DrPizza2009-12-14T20:59:13Z2009-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#19032670Answer by DrPizza for Optimal way to perform a shift operation on an arrayDrPizza2009-12-14T20:25:04Z2009-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#19020733Answer by DrPizza for Does the visual studio 2008 profiler work with unmanaged C++?DrPizza2009-12-14T16:51:45Z2009-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#18791713Answer by DrPizza for How to protect Java codes against decompiler ?DrPizza2009-12-10T07:12:01Z2009-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#18659002Answer by DrPizza for C++: Loading an EXE as a DLL, local vftable problemDrPizza2009-12-08T09:52:44Z2009-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#18630850Answer by DrPizza for Why does 'unspecified_bool' for classes which have intrinsic conversions to their wrappered type fail?DrPizza2009-12-07T21:38:52Z2009-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#18570561Answer by DrPizza for Limitations of PEG grammar & parser generators?DrPizza2009-12-06T23:45:30Z2009-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#18543781Answer by DrPizza for combine native dll and assembly into a single dllDrPizza2009-12-06T04:35:32Z2009-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#18470361Answer by DrPizza for WPF:MoveableControlDrPizza2009-12-04T13:44:37Z2009-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#18469640Answer by DrPizza for Get the templated type as a stringDrPizza2009-12-04T13:32:16Z2009-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#18468541Answer by DrPizza for .NET COM Library is not unloaded from C++ host process.DrPizza2009-12-04T13:10:22Z2009-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#18406071Answer by DrPizza for Is Double-buffering required with Desktop Composition enabled?DrPizza2009-12-03T15:25:24Z2009-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#18389283Answer by DrPizza for Integrating into Windows Explorer context menuDrPizza2009-12-03T10:05:35Z2009-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#18387685Answer by DrPizza for C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar?DrPizza2009-12-03T09:33:26Z2009-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<IEntity></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#18387121Answer by DrPizza for C# - Running Total using Aggregate()DrPizza2009-12-03T09:21:50Z2009-12-03T09:21:50Z<pre><code>array.Aggregate(0, (progress, next) => { 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#18385793Answer by DrPizza for What's C++ Really Doing When I Accidently Use a Variables to Declare Array Length?DrPizza2009-12-03T08:50:32Z2009-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#18349140Answer by DrPizza for Default assignment operator in inner class with reference membersDrPizza2009-12-02T18:36:15Z2009-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#18348791Answer by DrPizza for Do potential exceptions carry an overhead?DrPizza2009-12-02T18:30:16Z2009-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#18348380Answer by DrPizza for exceptions across module boundaries in C++/CLIDrPizza2009-12-02T18:25:06Z2009-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-1Answer by DrPizza for Is there an automated program to find C++ linker errors?DrPizza2009-12-01T13:03:15Z2009-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#18260453Answer by DrPizza for Minimum Number of Operations needed.DrPizza2009-12-01T12:58:17Z2009-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#18260180Answer by DrPizza for How to deal with initialization of non-const member in const object?DrPizza2009-12-01T12:53:16Z2009-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#18259751Answer by DrPizza for C/C++ maximum stack size of programDrPizza2009-12-01T12:44:22Z2009-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-issueComment by DrPizza on thread synchronization - delicate issueDrPizza2009-12-17T15:56:18Z2009-12-17T15:56:18ZThis is just wrong for every reason imaginable. Don't do it.http://stackoverflow.com/questions/1903066/wrapping-a-propertysheet-how-to-handle-callbacks/1903766#1903766Comment by DrPizza on Wrapping a PropertySheet; how to handle callbacks?DrPizza2009-12-17T04:57:19Z2009-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#1910852Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default?DrPizza2009-12-16T14:18:05Z2009-12-16T14:18:05ZLots of things give undefined behaviour. It is hardly significant.http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910852#1910852Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default?DrPizza2009-12-16T00:19:37Z2009-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#1910852Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default?DrPizza2009-12-16T00:18:29Z2009-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#1910852Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default?DrPizza2009-12-15T22:49:33Z2009-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#1910852Comment by DrPizza on [C++] Why aren't pointers initialized with NULL by default?DrPizza2009-12-15T22:29:18Z2009-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#1907741Comment by DrPizza on What do I need to know about memory in C++?DrPizza2009-12-15T22:15:32Z2009-12-15T22:15:32ZThey 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#1903766Comment by DrPizza on Wrapping a PropertySheet; how to handle callbacks?DrPizza2009-12-15T13:53:22Z2009-12-15T13:53:22ZATL 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#1903766Comment by DrPizza on Wrapping a PropertySheet; how to handle callbacks?DrPizza2009-12-15T02:43:23Z2009-12-15T02:43:23ZThat 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-cComment by DrPizza on Using a Set Iterator in C++DrPizza2009-12-14T22:12:24Z2009-12-14T22:12:24ZDammit GMan! Beat me by 9 seconds.http://stackoverflow.com/questions/1903813/using-a-set-iterator-in-cComment by DrPizza on Using a Set Iterator in C++DrPizza2009-12-14T22:11:00Z2009-12-14T22:11:00ZInstead of showing what the code "looks like", 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#1882012Comment by DrPizza on what is the use of Long.reverse(long ) method?DrPizza2009-12-10T16:07:28Z2009-12-10T16:07:28Z"What's the use of" means "what's the purpose", not "what does it do". The question is clear.http://stackoverflow.com/questions/1025589/setting-variable-to-null-after-free/1879191#1879191Comment by DrPizza on Setting variable to NULL after free ...DrPizza2009-12-10T15:45:09Z2009-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#1879191Comment by DrPizza on Setting variable to NULL after free ...DrPizza2009-12-10T07:25:52Z2009-12-10T07:25:52ZExcept that this is not "safer", as it masks program errors.