14
votes
13answers
1k views
What are some C++ related idioms, misconceptions, and gotchas that you’ve learnt from experience?
What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience?
An example:
class A
{
public:
char s[1024];
char *p;
A::A()
{
p …
6
votes
10answers
470 views
Commonly Misunderstood Elements of Java?
I was making an array of objects, and wanted to run the
constructor for the object on every element of the array to
initialize them like so:
cells = new Cell[cols];
Arrays.fill( …
