Reference Variable in Java

In this post, we will see about Reference variable in java.

Reference variable

A variable that holds reference of an object is called a reference variable. Variable is a name that is used to hold a value of any type during program execution. If the type is an object, then the variable is called reference variable, and if the variable holds primitive types(int, float, etc.), then it is called non-reference variables.

For example, If we create a variable to hold a String object, then it is called reference variable because String is a class. See an example.

ReferenceVariable

Reference variable basically points to an object stored into heap memory.

Note: Default value of a reference variable always a null.

We can create reference variable of either built-in class or user-defined class. Java provides hundreds of built-in classes like String, ArrayList, Arrays, Math, etc. We can create reference of these classes and call their member fields and methods. Apart from the built-in class object, we can create reference of our custom(user-defined) class. For example, we created a class MyClass and created a reference variable myClass to hold its object inside the Demo class.

Output:

Your name is Java2blog

Reference variable can be of many types based on their scope and accessibility. For example,

  1. Static reference variable
  2. Instance reference variable
  3. Local reference variable

Static Reference Variable

A variable defined using static keyword is called static variable. Static variable can be a reference or non-reference as well. In this example, we created two static reference variables and access them inside the main() method.

Output

Value of str : null
Value of str2 : Java2blog

Instance Reference Variable

A variable which is not static and defined inside a class is called an instance reference variable. Since instance variable belongs to object, then we need to use reference variable to call instance variable.

Output

Value of str : null
Value of str2 : Java2blog

Local Reference Variable

Reference variable can be declared as local variable. For example, we created a reference of String class in main() method as local reference variable.

Output:

Value of str2 : Java2blog

That’s all about Reference variable in java.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *