When to make a method static?

30,016

Solution 1

I use static methods whenever I can. Advantages:

  • When calling a static method from inside an instance method, you can be sure that there are no side-effects on the state of the current object.
  • From inside a static method, you can be sure you don't accidentally modify any state of the object instance.
  • You can use a static method from outside the class without constructing an instance. If it was possible to make the method static, it clearly doesn't need an instance, so there's no need to require one.
  • Static methods may be slightly more efficient because no "this" pointer needs to be passed, and no dynamic dispatch is necessary.

Solution 2

Kevin Bourrillion wrote an insightful answer on this topic some time ago (admittedly from a Java perspective, but I think it's applicable to other languages too).

He argues that you should basically only use static methods for pure functions.

A "pure function" is any method which does not modify any state and whose result depends on nothing but the parameters provided to it. So, for example, any function that performs I/O (directly or indirectly) is not a pure function, but Math.sqrt(), of course, is.

I tend to agree. (Although in my own code, traditionally, I've probably used way too many static helper methods all over the place... :-P And this surely has made code that uses those methods harder to test.)

Solution 3

If what the method does depend solely on its arguments, you can make it static. If the method does not instantiate any other of your user defined classes, you can make it static. The default, though, is to have it as non-static.

Solution 4

Use static methods when you are performing operations that do not operate on instances of the class.

A perfect example would be a sqrt method of a Math class.

Solution 5

It depends. In languages where non-member functions are possible I'd say that most of the time, if the method could be made static, it should be made a non-member function instead, non-friend if possible. You can tell I have a mostly C++ background.

In "pure" OO languages where non-member functions are not possible it would depend on whether the method is only "incidentally" static (i.e. it just happens not to need access to instance members), or is truly logically static - it is a method of the whole class instead of for a particular instance.

Share:
30,016
Dónal
Author by

Dónal

I earn a living by editing text files. I can be contacted at: [email protected] You can find out about all the different kinds of text files I've edited at: My StackOverflow Careers profile

Updated on November 11, 2021

Comments

  • Dónal
    Dónal over 2 years

    I'd like to know how people decide whether to define a method as static. I'm aware that a method can only be defined as static if it doesn't require access to instance fields. So let's say we have a method that does not access instance fields, do you always define such a method as static, or only if you need to call it statically (without a reference to an instance).

    Perhaps another way of asking the same question is whether you use static or non-static as the default?