When we can have class and method as static?
Anybody please help me with some example...
|
|
||||
|
|
closed as not a real question by Brian Roach, SztupY, asgoth, Jean-François Corbett, Björn Kaiser Jan 10 at 12:31
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
When you don't need a class instance to invoke that method. It means that method does not depend on any non-static members of the class |
|||
|
|
|
You can make a method static if it doesn't use any non-static members of the class. You can make a class static if it only contains static members. |
|||
|
|
|
If a method doesn't change it's behaviour based on different objects of it's enclosing class. it can be marked Check All the utility/helper methods can be (should be) marked as You should check this also: Java static class |
|||
|
|
|
A static method belongs to the Class and thus not to a specific instance. If you think at programming languages in term of message dispatching we can say procedural programming provides only 1 level of message dispatching as the name of the function correspond to its actual behavior. In Object Oriented Programming we have two level of message dispatching as you also has you have to specify an object plus the signature of a function (method). The same function may behave differently on different object depending on their status (subClass overridden method, etc.). A static method is instead like a global function you can execute where and how you want and always has the same behavior. You may therefore limit the usage of static methods although there are cases in which they are helpful. In the Singleton pattern (http://it.wikipedia.org/wiki/Singleton) a static method is necessary to retrieve the Singleton's instance (also a private static attribute is necessary to keep track of it). For those who claim Singleton are evil and you should always use Dependency Injection via Google Guice, also Guice relies on static method for instance to create an injector (http://lowcoupling.wordpress.com/2012/12/05/dependency-injection/). So I guess the best answer is you should always think if the problem you are facing might just be solved by the injection of object but there are cases in which the usage of static methods is pretty reasonable. |
|||
|
|