answersLogoWhite

0

not created class

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What is the need to create an abstract class without abstract?

Actually there is no need & most importantly - you cannot create an abstract class without using the abstract keyword


Math class is an example of which class?

It is a static class; meaning that all the methods can be accessed directly from the class name, without instantiating an object.It is a static class; meaning that all the methods can be accessed directly from the class name, without instantiating an object.It is a static class; meaning that all the methods can be accessed directly from the class name, without instantiating an object.It is a static class; meaning that all the methods can be accessed directly from the class name, without instantiating an object.


Write a program to create object without name?

You cannot create an object without a name. The name identifies the object. If you really mean anonymous classes, then the following is an example of an anonymous class (a class with no identifier):typedef struct {unsigned x;unsigned y;} POINT;There are some restrictions with regards anonymous classes:They can have no constructors or destructor.They cannot be returned from functions.They cannot be passed as type-checked arguments to functions.


What condition a function must specify in order to create objects of a class?

The object must have same name as that of class name.


What is meant by instancing a class?

The class can be considered a template to create objects. When you create an object, you create it on the basis of the specified class - the object is an instance of the class, and the act of creating the object is also known as "instantiating" the class.

Related Questions

What is the need to create an abstract class without abstract?

Actually there is no need & most importantly - you cannot create an abstract class without using the abstract keyword


Is it possible to create a class action without using class action attorneys?

Yes, you can create a class action without class action attorneys, but it is not recommended. There is a ton of paperwork that is best handled by an attorney who knows about class action lawsuits.


Is it possible to create a Abstract class without abstract keyword?

no


Can you create class on cod 4 without live?

yes


Math class is an example of which class?

It is a static class; meaning that all the methods can be accessed directly from the class name, without instantiating an object.It is a static class; meaning that all the methods can be accessed directly from the class name, without instantiating an object.It is a static class; meaning that all the methods can be accessed directly from the class name, without instantiating an object.It is a static class; meaning that all the methods can be accessed directly from the class name, without instantiating an object.


Can you create a class in call of duty 4 without online?

you can't


Write a program to create object without name?

You cannot create an object without a name. The name identifies the object. If you really mean anonymous classes, then the following is an example of an anonymous class (a class with no identifier):typedef struct {unsigned x;unsigned y;} POINT;There are some restrictions with regards anonymous classes:They can have no constructors or destructor.They cannot be returned from functions.They cannot be passed as type-checked arguments to functions.


What conditions a function must specify in order to create objects of a class?

The object must have same name as that of class name.


What condition a function must specify in order to create objects of a class?

The object must have same name as that of class name.


Can you create a class without beating the game in cod4?

Yes, but you have to be online to make one.


What is the name of the class that create object?

I think what you know is called constructor.


How do you create the object?

ClassName instName = new ClassName(); where class name is the class, instName is the variable for the instantiated class, and ClassName() is the constructor.