answersLogoWhite

0

An object is a component of a program that knows how to perform certain actions and to interact with other pieces of the program.it is created as following......

An object is an instance of a class. For object read variable!

Every time we define a variable we get a new object which has all the properties of the

associated class. This is the same as with the built-in types of C (float, int etc.)-they

have certain properties (range of values, operations etc), the bonus is that we can make up.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Instantiation of objects in c plus plus?

Objects are instantiated when statically declared or dynamically created with the new keyword.


What are the objects used in dev c plus plus?

Objects in Dev C++ are the same as objects in generic C++, insofar as an object is an instance of a class.


What do you mean by read only objects in c plus plus?

Objects that are not supposed to be written. Surprised?


What is the difference between active and passive objects in c plus plus?

Passive objects encapsulate state and operations, whereas active objects also encapsulate a process. Standard C++ does not support active objects.


In c plus plus what are the three ways that classes can relate to each other?

Class wrappers (embedded objects), inheritance (derived objects) and friend classes.


How do you write classes and objects for hospital management software using objective c or c plus plus?

You declare a class as follows: class MyClass { //some stuff here... } You create an object as follows: MyClass object; This is how you create classes and objects in C++.


What are entities in c plus plus?

Entities are the objects instantiated by your program, both at compile time and at runtime. Some objects are primitive data types, others are more complex such as objects instantiated from a class.


What do you mean by initialisation of objects in c plus plus?

Initialization of objects means to provide an initial value for the object. This is usually done by the constructor, or it can be done with an assignment statement.


What is the term that describes the hiding of implementation details of objects from each other in a C plus plus class?

Encapsulation.


Objects and their properties in c plus plus?

There are as many different classes of object as there are programmers to create them. I've probably created several thousand different objects in my time, some trivial, some highly complex. But it would be impossible for me to list every class of object I've created, never mind all their individual properties.


How c plus plus objects are allocated memory?

With the new operator.myclass myclasspointer = new myclass;...use the classdelete myclasspointer;


Casting in c plus plus?

Yes, you can cast in C++, both statically and dynamically. Objects can also be cast provided the class designer implemented the appropriate conversion operators.