explain instance variable give an example
Answers
Answered by
11
Answer:
here is your answer...
All of you are well acquainted with the concept of variables in Java which is integral to Java career or an eventual certification.Java provides us with the liberty of accessing three variables, i.e., local variables, class variables, and instance variables. In this article, I would be discussing the implementation of instance variable in Java.
hope it helps you...
mark it as brainliest...
Explanation:
Answered by
12
An instance variable is a variable defined in a class .
(i.e. a member variable), for which each instantiated object of the class has a separate copy, or instance. An instance variable is similar to a class variable.
Similar questions