Tagged Questions

1
vote
2answers
292 views

Imperative vs interrogative methods

When implementing a class, is it better practice to return a value for methods (interrogative) or to simply manipulate class attributes directly within the method (imperative). For example, I have a ...