0
votes
At as deep of a level as possible, how are virtual functions implemented?
Usually with a VTable, an array of pointers to functions.
…
1
vote
Is this C++ structure initialization trick safe?
If you already have a constructor, why not just initialize it there with n1=0; n2=0; -- that's certainly the more normal way.
Edit: Actually, as paercebal has shown, ctor initiali …
0
votes
Are C++ non-type parameters to (function) templates ordered?
Try changing the JSObject * to another pointer type to see if that reproduces the error. Is JSObject defined at the point of use? Also, maybe JSObject* needs to be in parens.
…
0
votes
What are the advantages of using Objective-C over C++
For Mac and iPhone development, it is definitely better. The latest version has a GC, so if you like that, you'll probably like it better than C++.
…
0
votes
How does boost bind work behind the scenes in general?
I think it's a template class that declares a member variable for the arguments you want to bind and overloads () for the rest of the arguments.
…
3
votes
How to get a stack trace when C++ program crashes? (using msvc8/2005)
If you run the debug version on a machine with VS, it should offer to bring it up and let you see the stack trace.
The problem is that the real problem is not on the call stack any more. I …
0
votes
how get a vector<Derived*> into a function that expects a vector<Base*> as argument
They are unrelated types -- you can't.
…
1
vote
Problem with converting enumerations in C++\CLI
I think enums don't use the ^ -- try removing it from the property declaration and get().
…
5
votes
Good C++ GUI library for Windows
I would take a second look at Qt -- it's not free for commercial use, but they have a good entry-level license if you are just starting out. I think their interface is fairly modern, although I di …
0
votes
Storing C++ template function definitions in a .CPP file
Yes, that's the standard way to do specializiation explicit instantiation. As you stated, you cannot instantiate this template with other types.
Edit: corrected based on comment. …
1
vote
C++ Thread, shared data
No, it's not certain. If you declare the variable volatile, then the complier is supposed to generate code that always loads the variable from memory on a read.
…
2
votes
Creating a ZIP file on Windows (XP/2003) in C/C++
There is sample code to do that here
http://www.eggheadcafe.com/software/aspnet/31 …
1
vote
Compile errors in mshtml.h compiling with VS2008.
There is probably a #define changing something. Try running just the preprocessor on your .cpp and generating a .i file. The setting is in the project property pages.
EDIT: Also, you can …
1
vote
Template Constraints C++
Sort of. If you static_cast to an IFoo*, then it will be impossible to instantiate the template unless the caller passes a class that can be assigned to an IFoo *.
…
6
votes
How do you handle strings in C++?
std::string unless I need to call an API that specifically takes one of the others that you listed.
…
