answersLogoWhite

0

Instance refers to one item of a particular type. for ex: you are one instance of a human, similarly I am one instance of human.

An instance in object oriented terms refers to one item of a particular object type.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What do you mean by this keyword in java?

"this" is a Java keyword that references the current object. Any part of the object(instance variables, methods, constructors) can be accessed by calling this.[member].


What is java-enabled?

Typically "Java-enabled" refers to some device (a cell phone, for instance) which either already has Java installed on it, or has the ability to have Java installed on it.


List out the version of java?

Running "java -version" will display the current version of Java.


What is java 7?

Java 7 is the most current version of Java. Many movies and games use Java.


What is latest verson of JAVA?

The Current & Latest version of java is, 1.6.0.25


Uses of this keyword in java?

this keyword is used to avoid complication between instance variable and local varible.we identify instance variable by using this keyword(e.g: this.a=a;)


Is super keyword is anologous to this keyword in java?

No. The keyword super is used to refer to the parent class instance while the keyword this is used to refer to the current class instance. You need to learn about Inheritance and Object creation using constructors to learn more about these keywords and their use


Is super keyword is analogous to this keyword in java?

No. The keyword super is used to refer to the parent class instance while the keyword this is used to refer to the current class instance. You need to learn about Inheritance and Object creation using constructors to learn more about these keywords and their use


Who is the current owner of java?

there is no single owner of java island. All of indonesian people own it


For what purpose constructors are used in Java?

Constructors are used to create the instance of a class.


Where to use this in java?

"this" is a reserved word that allows an object to refer to an instance of itself. http://java.sun.com/docs/books/tutorial/java/javaOO/thiskey.html


What is instance variable in java?

That refers to a variable attached to an object - also known as a field.