3
votes
How do you deal with NUL?
For dealing with strings, I alwayse represent the null character as '\0'.
For pointers, I try to use implicit-conversion-to-boolean (if (!myPtr) or if (myPtr)) for pointer nullity.
If …
5
votes
Which, if any, C++ compilers do tail-recursion optimization?
gcc 4.3.2 completely inlines this function (crappy/trivial atoi() implementation) into main(). Optimization level is -O1. I notice if I play around with it …
1
vote
Adding Boost makes Debug build depend on “non-D” MSVC runtime DLLs
Looks like other people have answered the Boost side of the issue. Here's a bit of background info on the MSVC side of things, that may save further headache.
There are 4 versions of the C …
6
votes
Extending an existing class like a namespace (C++)?
My only question to you is, "does your added functionality need to be a member function, or can it be a free function?" If what you want to do can be solved using the class's existing interface, t …
1
vote
Double Negation in C++ code.
It's actually a very useful idiom in some contexts. Take these macros (example from the Linux kernel). For GCC, they're implemented as follows:
#define likely(cond) (__builtin_e …
1
vote
How do I find the file handles that my process has opened in Linux?
I agree with what other people have said about closing random files being dangerous. You might end up filing some pretty interesting bug reports for all of your third-party tools.
That sai …
1
vote
How can I improve/replace sprintf, which I’ve measured to be a performance hotspot?
I would do a few things...
cache the current time so you don't have to regenerate the timestamp every time
do the time conversion manually. The slowest part of the pri …
2
votes
Which is faster - C# unsafe code or raw C++
If you know your environment and you use a good compiler (for video processing on windows, Intel C++ Compiler is probably the best choice), C++ will beat C# hands-down for several reasons:
…
