1
vote
What’s the best way to have a C++ member function get called by a C callback ?
One thing you should be aware of is that if you write code like this:
try {
CallIntoCFunctionThatCallsMeBack((void *)this, fCallTheDoItFunction);
} catch (MyException &err)
…
1
vote
Easy way to use variables of enum types as string in C?
I know you have a couple good solid answers, but do you know about the # operator in the C preprocessor?
It lets you do this:
#define MACROSTR(k) #k
typedef enum {
kOne …
2
votes
Should Local Variable Initialisation Be Mandatory?
Let me tell you a story about a product I worked on in 1992 and later that, for the purposes of this story, we'll call Stackrobat. I was assigned a bug that caused the application to crash on the …
1
vote
What is the most spectacular way to shoot yourself in the foot with C++?
static void MyInterruptServiceHandler(/* ... */)
{
SomeObject p; // allocates memory in the constructor
// whoops! There goes my heap!
}
…
1
vote
0
votes
Is !! a safe way to convert to bool in C++?
The double not feels funny to me and in debug code will be very different than in optimized code.
If you're in love with !! you could always Macro it.
#define LONGTOBOOL(x) …
0
votes
Fastest way to do a case-insensitive substring search in C/C++?
If you want to shed CPU cycles, you might consider this - let's assume that we're dealing with ASCII and not Unicode.
Make a static table with 256 entries. Each entry in the table is 256 b …
1
vote
What do you miss when you have to use C instead of C++?
Stack based resource management
FileCloser closer(fp); // closes the FILE * on function exit
…
0
votes
How do you add external libraries for compilation in VC++?
What do you mean "add them to a build"?
In VC, within a solution, you can have a project whose output is a library (static or dynamic) and then another project that depends upon the output …
3
votes
How would you improve this algorithm? (c string reversal)
Your code is straight forward and unsurprising. A few things:
Use size_t instead of int for your loop index
While your compiler is most likely smart enough to figure out tha …
1
vote
4
votes
Do modern compilers optimize the x * 2 operation to x << 1?
The answer is "if it is faster" (or smaller). This depends on the target architecture heavily as well as the register usage model for a given compiler. In general, the answer is "yes, always" as …
1
vote
What’s the best way to build variants of the same C/C++ application.
You don't always have to force inheritance relationships in applications that share a common code base. Really.
There's an old UNIX trick where you tailor the behavior of you application b …
2
votes
Are memory leaks ever ok?
Historically, it did matter on some operating systems under some edge cases. These edge cases could exist in the future.
Here's an example, on SunOS in the Sun 3 era, there was an issue if …
0
votes
Initializing struct, using an array
Were I to do this in straight C, I wouldn't use the mother of all if's. Instead, I would do something like this:
typedef struct {
const char *fieldName;
int structOffset;
…
