Search Results

5
votes
5answers
377 views

when to pass a parameter and when to use an instance variable

How do you guys decide between keeping track of something locally and then just passing it in to every method you call on it, or declaring an instance variable and using it in the methods? …
2
votes
5answers
349 views

Using return statements to great effect!

When I am making methods with return values, I usually try and set things up so that there is never a case when the method is called in such a way that it would have to return some default value. W …