I keep on getting confused about this design decision a lot of the time when I'm writing programs, but I'm not 100% sure when I should make a function to be a member function of a class, when to leave it as a normal function in which other source files can call the function when the function declaration is exposed in a header file. Does the desired access to member variables of a function have to do with the decision most of the time? Thanks in advance.
|
|
The Interface Principle by Herb Sutter For a class X, all functions, including free functions, that both For in depth discussion read Namespaces and the Interface Principle by Herb Sutter. EDIT |
|||||||||||||||
|
|
If something needs to access member variables or some aspect of an instance of the object, then it should be made a method. If it is closely related to the class, but doesn't need to access any instance specific information, then it should be made a shared function (or class function, or static function depending on what programming language you are dealing with). Even if it is just a generic function, chances are that you will have more than one of them and that they can be aggregated/organized according to some concept. Then, you can create a class representing that concept, and make them shared functions. Given the above, I never see any reason to create standalone functions anymore. |
|||
|
|
|
I use classes when I need to maintain state. If a function doesn't need access to maintained state information, then I prefer a free function because it makes testing and code reuse easier. If I have a bunch of related functionality but don't need to maintain state, then I prefer putting free functions in a namespace. |
|||
|
|