When should a method be static? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:29:23Z http://stackoverflow.com/feeds/question/48755 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48755/when-should-a-method-be-static 7 When should a method be static? Scott A. Lawrence 2008-09-07T20:28:46Z 2008-09-29T15:42:27Z <p>In addition, are there any performance advantages to static methods over instance methods?</p> <p>I came across the following recently: <a href="http://www.cafeaulait.org/course/week4/22.html" rel="nofollow">http://www.cafeaulait.org/course/week4/22.html</a> :</p> <blockquote> <p>When should a method be static?</p> <ol> <li>Neither reads from nor writes to instance fields</li> <li>Independent of the state of the object</li> <li>Mathematical methods that accept arguments, apply an algorithm to those arguments, and return a value</li> <li>Factory methods that serve in lieu of constructors</li> </ol> </blockquote> <p>I would be very interested in the feedback of the Stack Overflow community on this.</p> http://stackoverflow.com/questions/48755/when-should-a-method-be-static/48756#48756 0 Answer by Jason Bunting for When should a method be static? Jason Bunting 2008-09-07T20:32:19Z 2008-09-07T20:32:19Z <p>Here is a related discussion as to <a href="http://beta.stackoverflow.com/questions/23228/why-is-stringformat-static" rel="nofollow"><strong>why String.Format is static</strong></a> that will highlight some reasons.</p> http://stackoverflow.com/questions/48755/when-should-a-method-be-static/48759#48759 8 Answer by Tom Hawtin - tackline for When should a method be static? Tom Hawtin - tackline 2008-09-07T20:33:39Z 2008-09-07T20:33:39Z <p>Make methods static when they are not part of the instance. Don't sweat the micro-optimisations.</p> <p>You might find you have lots of private methods that could be static but you always call from instance methods (or each other). In that case it doesn't really matter that much. However, if you want to actually be able to test your code, and perhaps use it from elsewhere, you might want to consider making those static methods in a different, non-instantiable class.</p> http://stackoverflow.com/questions/48755/when-should-a-method-be-static/48760#48760 2 Answer by Kyle Cronin for When should a method be static? Kyle Cronin 2008-09-07T20:33:59Z 2008-09-07T20:33:59Z <p>Whether or not a method is static is more of a design consideration than one of efficiency. A static method belongs to a class, where a non-static method belongs to an object. If you had a Math class, you might have a few static methods to deal with addition and subtraction because these are concepts associated with Math. However, if you had a Car class, you might have a few non-static methods to change gears and steer, because those are associated with a specific car, and not the concept of cars in general.</p> http://stackoverflow.com/questions/48755/when-should-a-method-be-static/48781#48781 1 Answer by Roddy for When should a method be static? Roddy 2008-09-07T20:59:01Z 2008-09-29T15:42:27Z <p>Performance-wise, a C++ static method can be slightly faster than a non-virtual instance method, as there's no need for a 'this' pointer to get passed to the method. In turn, both will be faster than virtual methods as there's no VMT lookup needed.</p> <p>But, it's likely to be right down in the noise - particularly for languages which allow unnecessary parameter passing to be optimized out.</p> http://stackoverflow.com/questions/48755/when-should-a-method-be-static/48804#48804 1 Answer by iAn for When should a method be static? iAn 2008-09-07T21:26:25Z 2008-09-07T21:26:25Z <p>@jagmal I think you've got some wires crossed somewhere - all the examples you list are clearly not static methods.</p> <p><strong>Static methods should deal entirely with abstract properties and concepts of a class - they should in no way relate to instance specific attributes (and most compilers will yell if they do).</strong> </p> <p>For the car example, speed, kms driven are clearly attribute related. Gear shifting and speed calculation, when considered at the car level, are attribute dependent - but consider a carModel class that inherits from car: at this point theyy could become static methods, as the required attributes (such as wheel diameter) could be defined as constants at that level.</p> http://stackoverflow.com/questions/48755/when-should-a-method-be-static/48811#48811 1 Answer by Mike Stone for When should a method be static? Mike Stone 2008-09-07T21:36:10Z 2008-09-07T21:36:10Z <p>Just remember that whenever you are writing a static method, you are writing an inflexible method that cannot have it's behavior modified very easily.</p> <p>You are writing procedural code, so if it makes sense to be procedural, then do it. If not, it should probably be an instance method.</p> <p>This idea is taken from <a href="http://steve.yegge.googlepages.com/singleton-considered-stupid" rel="nofollow">an article by Steve Yegge</a>, which I think is an interesting and useful read.</p> http://stackoverflow.com/questions/48755/when-should-a-method-be-static/48869#48869 4 Answer by marcospereira for When should a method be static? marcospereira 2008-09-07T22:59:19Z 2008-09-07T22:59:19Z <p>Another problem with static methods is that is a quite painful write unit test to them - in Java, at least. You can't mock a static method in any way. There is a <a href="http://googletesting.blogspot.com/2008/06/defeat-static-cling.html" rel="nofollow">post on google testing blog about this issue</a>. My rule of thumb is write static method when they haven't external dependencies (like database access, read files, emails and so on) what helps to keep them as simple as possible.</p> <p>Kind Regards</p>