1
vote
Boost Library
shared_ptr and weak_ptr, especially in multithreaded code, are alone worth installing boost. BOOST_STATIC_ASSERT is also pretty cool for doing compile-time l …
1
vote
Inspecting STL containers in XCode
The ability to view the container's items may rely on the complexity of the templated type. For trivial objects like int, bool, etc., and even simple class templates like
template …
1
vote
Splitting String C++
It depends on how complex the token delimiter is and if there are more than one. For easy problems, just use std::istringstream and std::getline. For more complex tasks or if you want to iterate …
1
vote
What are the access restrictions on accessing a DSN
This is somewhere between your #1 and #2: sometimes correct file permissions are also necessary. I once had troubles on a Vista machine connecting to a DB2 DSN because, for whatever reason (maybe …
0
votes
Safely checking the type of a variable
What you want to do sounds like a really bad and dangerous idea, but if you MUST do it (i.e. you're working in a legacy system or on hardware that you know will never change), then I would suggest …
4
votes
C++ templates and inheritance
I hate to tell you but if you're using a list of instances to Control instead of pointers to Control, your buttons will be garbage anyway (Google "object slicing"). If they're lists of pointers, t …
1
vote
Why override operator() ?
Start using std::for_each, std::find_if, etc. more often in your code and you'll see why it's handy to have the ability to overload the () operator. It also allows functo …
1
vote
Returning multiple values from a C++ function
Use a struct or a class for the return value. Using std::pair may work for now, but 1) it's inflexible if you decide later you want more info returned; and 2) it's not very clear from the function …
0
votes
Initializing a union with a non-trivial constructor
You'll have to wait for C++0x to be supported by compilers to get this. Until then, sorry.
…
0
votes
How best to switch from template mess to clean classes architecture (C++)?
I've often come across legacy templates that were huge and required a lot of time and memory to instantiate, but didn't need to be. In those cases, the easiest way to cut out the fat was to take a …
2
votes
How can I add reflection to a C++ application?
I did something like what you're after once, and while it's possible to get some level of reflection and access to higher-level features, the maintenance headache might not be worth it. My system …
1
vote
C++ Constructor
There are usually some good reasons to use an initialization list. For one, you cannot set member variables that are references outside of the initialization list of the constructor. Also if a me …
2
votes
Passing a Python array to a C++ vector using Swig
It depends on if your function is already written and cannot be changed, in which case you may need to check Swig docs to see if there is already a typemap from PyList to std::vector (I think there …
0
votes
How does the standard new operator work in c++?
Depends on if it's overloaded or not, if you built the app for debugging, if you're using a memory leak detector, if you have some kind of memory pooling scheme, if you have something like the Boeh …
1
vote
To Use GOTO or Not?
The easiest way to avoid what you are doing here is to put all of this cleanup into some kind of simple structure and create an instance of it. For example instead of:
void MyClass …
