What is difference between static (class) method and instance method?
Answers
Answered by
1
Instance methodare methods which require an object of its class to be created before it can be called. while Static methods are themethods in Java that can be called without creating an object of class. ... Static method means which will exist as a single copy for a class ...
Similar questions