I\'ve recently been working with someone else\'s code and I realized that this individual has a very different philosophy regarding private variables and method parameters t
In general, class members should represent state of the class object.
They are not temporary locations for method parameters (that's what method parameters are for).