answersLogoWhite

0


Best Answer

Objects are classes... It's the most abstract type of data.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can you use objects in class level declaration?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the use of objects in a class?

Hi, There is detail explanation about objects & classes here : http://vitzy.net/forum/Class-Objects-t1227.html Let me know if that helps, Thank you.


What is class?

It is where you leave school or otherwise find a way to avoid going to that particular class.


Why is a class called a factory of objects?

A factory class is a class that uses the factory method pattern. Factory method pattern is a creational pattern that uses factory methods to deal with the problem of creating objects without having to specify the exact class of the object that will be created. Google for more info.


In c plus plus Who tells the compiler that a specific class will be declared later in the program?

A forward declaration. However forward declarations can only be used when the class is used as a pointer or reference prior to its definition, otherwise it must be defined before it is used. class A; // forward declaration class B { A& data; // reference to class that has yet to be defined }; class A {}; // definition


Explain instantiation of objects in c plus plus?

Instantiation of a class literally means creating an instance of a class. This is the process of allocating memory for an object that you can use in your program.


Why don't we still use the declaration of independence?

yes we do.....i am a teacher in Texas and im teaching gmy 5th grade class about that right now


If you wanted to describe an increase in volume to your class which of the following objects would be the best item to use?

A soccer ball and a pump


How do you use shyness in a level 4 sentence?

My shyness kept me from raising my hand in class.


How does one define a Javascript class?

To define the class of a javascript code or string there are two to three or so main methods, one of these is to use it, and review the result, such as activating and using a function relative to to itself. Another is to use the objects Literals, the advantage to this is that Literals are a shorter way to define objects and arrays in JavaScript.


What is the use of private constructor in c plus plus?

Private construction prevents objects from the class from being instantiated other than via a static member function of the class, a friend function or a friend class.


Where can you find rogue class in adventure quest?

you need to be level 10+ to start rouge class either talk to robina in the inn or use the travel map to travel to krovseport at level 10 rouge you can be a ninja if your level 35+


How can you use some features of a class without inheritance?

You can create a class that does not inherit from anything and nothing inherits from it. You can then create objects from that class. This allows you to encapsulate and abstract data and methods into a simple interface to be used elsewhere in your program.