As per my understanding we should go for instance methods only when they are dealing with state of object i.e instance variable . If method does deal with state of object they should always be declared as class methods i.e static. But still in most of the projects i ihave seen the methods which never not operates on instance variables they are also declared as instance methods(basically what these methods are doing they are using some of the method parametrs and doing some processing on that paremets and calling some other classes).Thats it. Should not these methods should be declared as class method i.e static ?
|
It's likely the answer is yes: if you have an instance method that doesn't actually take advantage of the instance state, then it should probably be Note that even if you don't access instance variables, accessing instance methods will also disqualify a method from becoming Also important is that public non-static methods could be inherited and overriden by a subclass, so making them |
|||||||||||||
|
|
Static methods have the disadvantage that they tightly couple callers to the implementation. Instance methods can be overridden or can be one of multiple implementations of an interface method. In other words, instance methods can promote loose coupling, testability, and reuse. |
|||
|
|
|
Here's a [possibly incomplete] list when you must use instance methods over static ones:
You could probably go static in all other cases. |
||||
|
|
|
You cannot expect everyone to follow a path all the time whether it is best practice or not. First, we are all humans. We can choose a way over something different sometimes and that shouldn't be fully correct all the time. Even Frameworks and Libraries and Languages are created by humans so an error shouldn't surprise you or bedazzle you. For everything else, I concur dlev. |
||||
|
