Header Ads

ad728
  • Breaking News

    Explain the difference between static and instance methods in Java?



    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.

    No comments