Search Results

1
vote

DOs and DON’Ts of a technical presentation

I agree that your presentation should not take longer than one hour. Whatever comes after will very likely be lost for much of your audience. Do not try to outsmart your a …
3
votes

What was the strangest coding standard rule that you were forced to follow?

In C++, we had to write explicitly everything that the compiler is supposed to write for us (default constructor, destructor, copy constructor, copy assignment operator) for every class. Looks lik …
4
votes

What’s the best signature for clone() in C++?

I think the function semantics are so clear in this case that there is little space for confusion. So I think you can use the covariant version (the one returning a dumb pointer to the real type) …
3
votes

Why should I learn C#?

There is a nice article on the subject here. And it starts comparing C# and Java. …