answersLogoWhite

0

What is meant by an instance?

Updated: 8/17/2019
User Avatar

Kabuika

Lvl 1
15y ago

Best Answer

Answer

Java:

In Java an instance refers to an object of a particular type. For example ArrayList lst = new ArrayList();

now lst is an instance of type ArrayList. You can create instances of all possible objects and data types.

Answer

/* Let's say that we code a class called Shape: */

class Shape

{

private:

int m_area;

public:

int getArea(){return m_area};

void setArea(int area){m_area = area};

};

/* To use this class we must create an object, which is an "instance" of this class */

int main()

{

Shape x = new Shape();

Shape y = new Shape();

Shape z = new Shape();

/* We have created 3 objects (x, y, and z), each of which is a separate instance of the Shape class, we can now manipulate these objects: */

x.setArea(5);

y.setArea(7);

z.setArea(120);

cout << "Area of x is " << x.getArea() << "\n";

cout << "Area of y is " << y.getArea() << "\n";

cout << "Area of z is " << z.getArea() << "\n";

return 0;

}

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is meant by an instance?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is an instance name and how do you use it?

What in meant by an instance


What is meant by inscriptions?

an incription is writing carved into something for instance the witing on a tomb stone


How can you transform?

It depends on what is meant by transform? For instance, I can transform a plank of wood into a coffee table. More information is needed.


What does enpanding mean?

Assuming you meant expanding, which means growing larger. Blowing up a balloon, for instance, causes the balloon to expand.


How was Harald poisoned?

The answer to how was Harald poisoned depends on which Harald is being referenced. Harald Haakonsson, for instance, was murdered by a poisoned shirt that was meant for his brother.


What is meant by nocturnal visitor?

A nocturnal visitor is something or someone that comes to you at night. for instance:- "Bats are nocturnal visitors to my garden during the summer months".


What is meant by the 3 r s of waste disposal?

Reduce reuse, recycle. Reduce packaging for instance, Reuse your packaging where possible, Also, recycle what you can


What is meant by process in computer science?

When you tell your computer to run a program, a new process is created which runs the code in that program. A process is an instance of a program.


What is meant combustion?

Expansion is the primary result, or product of combustion. Expansion most frequently causes heat.


What does the spanish word Eterno means in English?

I'm soory but i cant seem to find tha word maybe you meant internment that meansan act or instance of interning.


What does touched your life mean?

If something has touched your life that means it really meant something to you. For instance, if a person hears a song and feels like the singer was singing about their life, the song touched them.


What is meant by'' crossing the line''?

When you step over someone's boundary. For instance, you're friends with someone of the opposite sex and you kiss her she might say 'you just crossed the line'.