Advantage of using a static member function instead of an equivalent non-static member function?
- by jonathanasdf
I was wondering whether there's any advantages to using a static member function when there is a non-static equivalent. Will it result in faster execution (because of not having to care about all of the member variables), or maybe less use of memory (because of not being included in all instances)?
Basically, the function I'm looking at is an…