Search Results

37
votes
58answers
4k views

What is the most spectacular way to shoot yourself in the foot with C++?

In 1986 or so, Bjarne Stroustrup famously said: "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off." What is, in your opinion, …
0
votes

choosing a c++ unit testing tool/framework

See also the answers to the closely related question "Unit testing for C++ code - Tools and methodology", …
3
votes

Unit testing for C++ code - Tools and methodology

See also the answers to the closely related question "choosing a c++ unit testing tool/framework", …
0
votes

C,C++ compiler for Vista

I am using Cygwin and GNU gcc to good effect. My Windows is XP, not Vista, however. Can anyone recommend gcc on Cygwin on Vista? …
0
votes

Is there a good lightweight multiplatform C++ timer queue?

There is a nice article in CodeProject, here, that describes the various timers available in Windows, and has cha …
0
votes

Returning an ‘any kind of input iterator’ instead of a vector::iterator or a list::iterator

I looked in the header file VECTOR. vector<Arc*>::const_iterator is a typedef for allocator<Arc*>::const_pointer Coul …
13
votes

What is the most spectacular way to shoot yourself in the foot with C++?

Here on SO, Joel Coehoorn wrote about this example: if ( blah(), 5) { //do someth …
1
vote

Good Book on C++ Internals?

Try the InformIT C++ reference guide, see here. It's free. …
2
votes

Zeroing out a struct in the constructor

You can use a template: template <class T> class selfzero : public T { public: selfzero() { ZeroMemory( this, sizeof( selfzero<T> )); }; }; …
0
votes

Getting different instances to communicate

I probably missed the point of your question. Why does this not do what you want? class CMyClass { public: void ExchangePointerWith( CMyClass& rhs ); private: void* m …
3
votes

Partial builds versus full builds in Visual C++

Hasn't everyone come across this usage pattern? I get weird build errors, and before even investigating I do a full rebuild, and the problem goes away. This by itself seems to me to be good …