3
votes
16answers
833 views
What are your favorite C++ Coding Style idioms
What are your favorite C++ coding style idioms? I'm asking about style or coding typography such as where you put curly braces, are there spaces after keywords, the size of indents, etc. This is o …
4
votes
How can I count operations in C++?
A sample profiler is a good choice here. On Windows, you can use the profiler built into Visual Studio, or the …
3
votes
Weird compile error dealing with Winnt.h
Hi Frank,
There are at least two ways to do this. The first is to simply include windows.h at the top of all your files. Then include winnt.h only if you need it. …
2
votes
Are non-pure virtual functions with parameters bad practice?
This is somewhat common in my code. For example, I have classes that are designed for single-threaded operation and multi-threaded. There are a lot of common routines and data. I put all of tha …
2
votes
Are memory leaks ever ok?
I agree with vfilby – it depends. In Windows, we treat memory leaks as relatively serous bugs. But, it very much depends on the component.
For example, memory leaks are not very serious f …
1
vote
How much work should be done in a constructor?
I would agree that long running constructors are not inherently bad. But I would argue that thy are almost always the wrong thing to do. My advice is similar to that from Hugo, Rich, and Litb: …
4
votes
what’s the easiest way to generate xml in c++?
Some may declare me an XML heretic - but one effective way is to just generate it with your favorite string output tools (print, output streams, etc) - this can go to a buffer or a file.
…
3
votes
Can anyone quantify performance differences between C++ and Java?
To me, this question is a bit of a red herring (perhaps not intentional). Its really the wrong question to ask.
The first questions to ask are these
What is keeping my prog …
1
vote
sending commands to an application from Excel? COM?
Option #1:
Create a small COM server - make sure its interfaces are suitable for scripting with the built Visual Basic engine in Excel. (e.g. use simple types and BSTRS). …
10
votes
calling code stored in the heap from vc++
A comment wasn't enough space. Joe_Muc is correct. You should not stuff code into memory obtained by malloc or new. You will run into problems if you change the page …
1
vote
regular expression to detect semi-colon terminated C++ for & while loops
Greg is absolutely correct. This kind of parsing cannot be done with regular expressions. I suppose it is possible to build some horrendous monstrosity that would work for many cases, but then y …
0
votes
Will Garbage Collected C be Faster Than C++?
I suggest that if you have written a program where memory allocation and deallocation (explicitly or GC'ed) is the bottleneck, then you should re-think your architecture, design and implementation. …
1
vote
Reading File Names
Hi Anthony,
I recommend you can use the native Win32 FindFirstFile() and FindNextFile() functions. These give you full control over how you search for files. This are simple C APis and …
1
vote
c++ for loop vs foreach
For small collections, it should matter and foreach tends to be clearer.
However, for larger collections, for will begin to beat foreach at some point. (assuming that the 'at()' operator i …
3
votes
How can I change Windows shell (cmd.exe) environment variables from C++?
In Windows when one process creates another, it can simply let the child inherit the current environment strings, or it can give the new child process a modified, or even completely new environment …
