what is difference between static method and instance method?
Answers
Answered by
0
here is your answer mate
Instance method are methods which require an object of its class to be created before it can be called. Static methods are the methods in Java that can be called without creating an object of class. Static method is declared with static keyword. Instance method is not with static keyword.
please mark as brainliest answer.
Similar questions