answersLogoWhite

0

You can change a class by modifying its definition at design time, assuming you have access to the source code.

User Avatar

Wiki User

7y ago

What else can I help you with?

Continue Learning about Engineering

Is it true or false - one problem with OOPS is that once a class is created it can never be changed?

If would have to say false. You would usually add a number of getters/setters to dynamically modify the contents of an object. You can also often respecify one object as another to allow access, for example, to its parent modifiers. You can also build a new class which inherits an existing class and builds upon it.


What is containership in oops concept?

In container class we can only access the public part of base class. For accessing of private and protected part of base class we use friend functions.


What is a synonymm for oops?

OOPS refers to Object Oriented Programming Structure. Some common terms used in oops are # Inheritance # Polymorphism # Encapsulation # Data hiding etc..


What are the oops concepts in net?

the 4 oops concept are: 1. Encapsulation: The process of wrapping data into a single unit is called Encapsulation 2. Inheritance: This the process in which a properties of a predefined class can be inherited in a new class making the object of that class in the making class. 3. Polymorphism: This the process in which a program can have more than one function with the same name but different parameters. 4. Data Hiding: It is the process of creating a logical insulation between the program and the environment.


What is an Attribute in OOPS?

•Attributes define the characteristics of a class. •The set of values of an attribute of a particular object is called its state. •In Class Program attribute can be a string or it can be a integer LEarn Design Pattern,C#,ASP.NET,LINQ,Sharepoint,WCF,WPF,WWF

Related Questions

Inner class oops?

Inner class oops is a program. This program is smaller class within a bigger class.


What is an anonymous class in oops?

class is defined in the class


Is it true or false - one problem with OOPS is that once a class is created it can never be changed?

If would have to say false. You would usually add a number of getters/setters to dynamically modify the contents of an object. You can also often respecify one object as another to allow access, for example, to its parent modifiers. You can also build a new class which inherits an existing class and builds upon it.


What is class in oops?

class is a user defind datatype


When was Oops TV created?

Oops TV was created on 2009-02-16.


When was Oops - Oh My - created?

Oops - Oh My - was created on 2002-01-15.


What is data type of class in oops?

user defined


In oops what is the difference between class variable and variable?

Class Variable is a subset of Variables.


What is single inheritance in oops?

Single Inheritance is the concept of deriving a class properties from a single base class


What is actual meaning of class in oops?

Class in oops is a thing that hava no physical existence, it is just a property of any object.object is recognised by a class. we can understand it by this way that "animal" is a class but "tiger" is an object "animal" have not any physical existence but "tiger" is physically exist but recognised by the word "animal".


Can you create a class for black oops online?

yes, but you have to earn trophies first


What is object in oops?

An instance of a class that holds state. Operations defined by it's class (or superclasses) can be performed on it. Now you may wonder what a class is :).