0
votes
Can eclipse extract a second class in class file to its own file
Can be done in 2 refactorings :
Convert Member type to top level
Move
…
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 …
