show/hide this revision's text 2 Added text from linked page to increase results of people actually answering

In addition, are there any performance advantages to static methods over instance methods?

I came across the following recently: http://www.cafeaulait.org/course/week4/22.html :

When should a method be static?

  1. Neither reads from nor writes to instance fields
  2. Independent of the state of the object
  3. Mathematical methods that accept arguments, apply an algorithm to those arguments, and return a value
  4. Factory methods that serve in lieu of constructors

I would be very interested in the feedback of the Stack Overflow community on this.

show/hide this revision's text 1

When should a method be static?

In addition, are there any performance advantages to static methods over instance methods?

I came across the following recently: http://www.cafeaulait.org/course/week4/22.html

I would be very interested in the feedback of the Stack Overflow community on this.