Ask Question

How can an instance variable be used in a class? Explain your answer. (java)

+5
Answers (1)
  1. 28 October, 05:57
    0
    Instantiate the object and access the variable using object reference.

    Explanation:

    In order to use/access an instance variable in a class, the class needs to be instantiated. For example:

    class Demo{

    //Instance variable declaration

    int testvar=0;

    public static void main (String args[]) {

    //Class instantiation

    Demo d = new Demo ();

    / / The instance variable is accessed using the object reference

    d. testvar = 1;

    }

    }

    In case the instance variable in private then it can be accessed using its corresponding getter/setter methods.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “How can an instance variable be used in a class? Explain your answer. (java) ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers