Static Instance

Static vs Instance Method

Static vs Instance Method

Introduction

In this article, we will discuss the differences between a static method and an instance method. Firstly, we will discuss the instance method and at the last, we will see the static method.

Instance method

Instance methods are the methods defined under a class and we can call such functions only after creating an object of that class. In fact, the call to the instance method is made through the created object itself.

An instance method has generally the following structure:

public return_type myMethod(parameter(s))
{
// body

}

Instance methods generally reside in the permanent generation space section of the heap but the local variables and parameters have a separate location in the stack memory. We can invoke instance methods within the same class or from a different class defined under the same package or different package if the access type allows the same.

Some of the properties of the instance method are the following:

  • Instance methods are related to an object rather than a class as they can be invoked after creating an object of the class.
  • We can override an instance method as they are resolved using dynamic binding during run time.
  • The instance methods are stored in a single memory location.

Let us consider the following program illustrating the working of instance method:

Source Code

class myClass {

    // Data member of type String
    String name = "";

    // Defining an instance method
    public void assignName(String name) { this.name = name; }
}
class HelloWorld {
    public static void main(String[] args) {

        // Create an object of the class
        myClass object = new myClass();

        // Calling an instance method in the class 'myClass'.
        object.assignName("Board Infinity");
       
        // Display the name
        System.out.println(object.name);
    }
}

Output:

Static methods

An static method in Java is a method that can be called without creating an object of the class. We can reference such methods by the class name or direct reference to the object of that class.

Some of the properties of the static method are the following:

  • An static method is related to a class rather than an object of the class. We can call the static method directly without creating an object of the class.
  • Static methods are designed in such a way that they can be shared among all objects created using the same class.
  • We cannot override static methods as they are resolved using the static binding by the compiler during compile time.

Let us consider the following program illustrating the working of static method:

Source Code

// Create a class
class myClass {

    // Create a data member
    public static String name = "";
   
    // Create static method
    public static void assignName(String passedName)
    {
        name = passedName;
    }
}
class HelloWorld {
    public static void main(String[] args) {

        // Accessing the static method assignName()
        myClass.assignName("Board Infinity");
        System.out.println(myClass.name);

        // Accessing the static method assignName()
        // having the object reference
        myClass object = new myClass();
       
        // Assign the name
        object.assignName("Java");
       
        // Display the name
        System.out.println(object.name);
    }
}

Output:

Static versus instance methods

Static 

Instance

Static methods can access the static variables and static methods directly.

Instance methods on the other hand can access instance variables and instance methods directly.

Static methods can’t access instance variables and instance methods directly without using the reference of an object.

Instance methods can access static variables and static methods directly.

“this” operator cannot be used by static methods.

Instance methods can use “this” operator.

Conclusion

In this article, we discussed what is static and instance methods. We also saw their working in detail. The differences between these methods have also been highlighted in detail. We believe this article has surely enhanced your knowledge and strengthened your Java knowledge.