English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

6 answers

One advantage is that with encapsulation, when using objects, the object need not reveal all its attributes and behaviors. In good Object-Oriented Design (at least what is generally accepted as good), an object should only reveal the interfaces needed to interact with it. Details not pertinent to the use of the object should be hidden from other objects. It is really the fundamental concept of Object-Oriented. Whenever the interface/implementation paradigm is covered, we are really talking encapsulation. This encapsulation pertains equally to data and behavior.

2006-09-17 22:49:59 · answer #1 · answered by Anonymous · 0 0

The idea of encapsulation comes from (i) the need to cleanly distinguish between the specification and the implementation of an operation and (ii) the need for modularity. Modularity is necessary to structure complex applications designed and implemented by a team of programmers. It is also necessary as a tool for protection and authorization.

There are two views of encapsulation: the programming language view (which is the original view since the concept originated there) and the database adaptation of that view.

The idea of encapsulation in programming languages comes from abstract data types. In this view, an object has an interface part and an implementation part. The interface part is the specification of the set of operations that can be performed on the object. It is the only visible part of the object. The implementation part has a data part and a procedural part. The data part is the representation or state of the object and the procedure part describes, in some programming language, the implementation of each operation.

The database translation of the principle is that an object encapsulates both program and data. In the database world, it is not clear whether the structural part of the type is or is not part of the interface (this depends on the system), while in the programming language world, the data structure is clearly part of the implementation and not of the interface.

Consider, for instance, an Employee. In a relational system, an employee is represented by some tuple. It is queried using a relational language and, later, an application programmer writes programs to update this record such as to raise an Employee's salary or to fire an Employee. These are generally either written in a imperative programming language with embedded DML statements or in a fourth generation language and are stored in a traditional file system and not in the database. Thus, in this approach, there is a sharp distinction between program and data, and between the query language (for ad hoc queries) and the programming language (for application programs).

In an object-oriented system, we define the Employee as an object that has a data part (probably very similar to the record that was defined for the relational system) and an operation part, which consists of the raise and fire operations and other operations to access the Employee data. When storing a set of Employees, both the data and the operations are stored in the database.

Thus, there is a single model for data and operations, and information can be hidden. No operations, outside those specified in the interface, can be performed. This restriction holds for both update and retrieval operations.

Encapsulation provides a form of ``logical data independence'': we can change the implementation of a type without changing any of the programs using that type. Thus, the application programs are protected from implementation changes in the lower layers of the system.

We believe that proper encapsulation is obtained when only the operations are visible and the data and the implementation of the operations are hidden in the objects.

However, there are cases where encapsulation is not needed, and the use of the system can be significantly simplified if the system allows encapsulation to be be violated under certain conditions. For example, with ad-hoc queries the need for encapsulation is reduced since issues such as maintainability are not important. Thus, an encapsulation mechanism must be provided by an OODBS, but there appear to be cases where its enforcement is not appropriate.

2006-09-17 22:54:29 · answer #2 · answered by Jayaprakash V 2 · 0 0

Encapsulation In Oop

2016-12-16 10:40:45 · answer #3 · answered by fearson 4 · 0 0

OOP is so abstract at first. After much agony I visualize objects as a fancy Array -- which in the final analysis is what objects physically resemble. Objects let you radomly access all the values of a group of variables by name instead of by an index number.

We encapsulate to make objects' values "special". By making the vars inside the objects encapsulated we gain one important convenience -- we don't have to have thousands of vars. That is, we can use the same name for parts that make objects.

If int wheelNo is a var for number of wheels on a car object, we can then use chevy.wheelNo, ford.wheelNo, toyota.wheelNo.

We then modify the access of the vars within objects with the modifiers: public, private, protected, default (for java anyway).

Allowing the different degrees of access gives methods and vars protection from outside changes. The vars within the object is thus said to be encapsulated.

Hope this helps. The textbooks were always too much theory.

2006-09-17 23:12:27 · answer #4 · answered by Anonymous · 0 0

dear term encapsulation means putting the functions and the data together in class. main advantage is the data can be accessed by these member functions of class only and any external command or external function can not ,accidently or intensionally, manipulate the data. the data is more secure.

2006-09-17 22:59:46 · answer #5 · answered by ravi 1 · 0 0

we ca n easily modify data after a some period of time. if we follow encapsulation

2014-12-06 03:02:23 · answer #6 · answered by Usman 1 · 0 0

fedest.com, questions and answers