Search Results

7
votes

Why do you not declare several variables of the same type on the same line?

In C++ : int * i, j; i is of type int *, j is of type int. The distinction is too easily missed. Besides having them on one line each makes it easier to ad …
2
votes

Do Java listeners need to be removed? (In general)

A will indeed keep B alive through the anonymous instance. But I wouldn't override finalize to address that, rather use a static inner class who doesn't keep the B alive. …