What is the precise difference between encapsulation and abstraction?
|
Encapsulation is hiding the implementation details which may or may not be for generic or specialized behavior(s). Abstraction is providing a generalization (say, over a set of behaviors). Here's a good read: Abstraction, Encapsulation, and Information Hiding by Edward V. Berard of the Object Agency. |
|||||||||
|
|
A priori, they've got nothing in common. Most answers here focus on OOP but encapsulation begins much earlier; every method is an encapsulation:
Here, Abstraction is the process of generalization: taking a concrete implementation and making it applicable to different, albeit somewhat related, types of data. The classical example of abstraction is C's The thing about |
|||
|
|
|
encapsulation puts some things in a box and gives you a peephole; this keeps you from mucking with the gears. abstraction flat-out ignores the details that don't matter, like whether the things have gears, ratchets, flywheels, or nuclear cores; they just "go" |
|||||||||||||
|
Like when you drive a car, you know what the gas pedal does but you may not know the process behind it because it is encapsulated. Let me give an example in C#. Suppose you have an integer:
you can use a method like Number.ToString() which returns you characters representation of the number 5, and stores that in a string object. The method tells you what it does instead of how it does it. |
|||||||||||||
|
|
Encapsulation: Is hiding unwanted/un-expected/propriety implementation details from the actual users of object. e.g.
Abstraction: Is a way of providing generalization and hence a common way to work with objects of vast diversity. e.g.
|
||||
|
|
|
Another example: Suppose I created an immutable Rectangle class like this:
Now it's obvious that I've encapsulated width and height (access is somehow restricted), but I've not abstracted anything (okay, maybe I've ignored where the rectangle is located in the coordinates space, but this is a flaw of the example). Good abstraction usually implies good encapsulation. An example of good abstraction is a generic database connection class. Its public interface is database-agnostic, and is very simple, yet allows me to do what I want with the connection. And you see? There's also encapsulation there, because the class must have all the low-level handles and calls inside. |
|||
|
|
|
Abstraction: Only necessary information is shown. Let's focus on the example of switching on a computer. The user does not have to know what goes on while the system is still loading (that information is hidden from the user). Let's take another example, that of the ATM. The customer does not need to know how the machine reads the PIN and processes the transaction, all he needs to do is enter the PIN, take the cash and leave. Encapsulation: Deals with hiding the sensitive data of a clas hence privatising part of it. It is a way of keeping some information private to its clients by allowing no access to it from outside. |
||||
|
|
|
A mechanism that prevents the data of a particular objects safe from intentional or accidental misuse by external functions is called "data Encapsulation" The act of representing essential features without including the background details or explanations is known as abstraction |
|||
|
|
|
Abstraction: The idea of presenting something in a simplified / different way, which is either easier to understand and use or more pertinent to the situation. Consider a class that sends an email... it uses abstraction to show itself to you as some kind of messenger boy, so you can call emailSender.send(mail, recipient). What it actually does - chooses POP3 / SMTP, calling servers, MIME translation, etc, is abstracted away. You only see your messenger boy. Encapsulation: The idea of securing and hiding data and methods that are private to an object. It deals more with making something independent and foolproof. Take me, for instance. I encapsulate my heart rate from the rest of the world. Because I don't want anyone else changing that variable, and I don't need anyone else to set it in order for me to function. Its vitally important to me, but you don't need to know what it is, and you probably don't care anyway. Look around you'll find that almost everything you touch is an example of both abstraction and encapsulation. Your phone, for instance presents to you the abstraction of being able to take what you say and say it to someone else - covering up GSM, processor architecture, radio frequencies, and a million other things you don't understand or care to. It also encapsulates certain data from you, like serial numbers, ID numbers, frequencies, etc. It all makes the world a nicer place to live in :D |
|||
|
|
|
Encapsulation is wrapping up complexity in one capsule that is class & hence Encapsulation… While abstraction is the characteristics of an object which differentiates from other object... Abstraction can be achieved by making class abstract having one or more methods abstract. Which is nothing but the characteristic which should be implemented by the class extending it. e.g. when you inventing/designing a car you define a characteristics like car should have 4 doors, break, steering wheel etc… so anyone uses this design should include this characteristics. Implementation is not the head each of abstraction. It will just define characteristics which should be included. Encapsulation is achieved keeping data and the behaviour in one capsule that is class & by making use of access modifiers like public, private, protected along with inheritance, aggregation or composition. So you only show only required things, that too, only to the extent you want to show. i.e. public, protected, friendly & private ka funda…… e.g. GM decides to use the abstracted design of car above. But they have various products having the same characteristics & doing almost same functionality. So they write a class which extends the above abstract class. It says how gear box should work, how break should work, how steering wheel should work. Then all the products just use this common functionality. They need not know how the gear box works or break works or steering wheal works. Indivisual product can surely have more features like a/c or auto lock etc….. Both are powerful; but using abstraction require more skills than encapsulation and bigger applications/products can not survive with out abstraction. |
|||
|
|
Lets take the example of a stack. It could be implemented using an array or a linked list. But the operations it supports are push and pop. Now abstraction is exposing only the interfaces push and pop. The underlying representation is hidden(is it an array or is it a linked list?) and a well defined interface is provided. Now how do you ensure that no accidental access is made to the abstracted data? That is where the Encapsulation comes in. For e.g classes in C++ use the access specifiers which ensure that accidental access and modification is prevented. And also by making the above mentioned interfaces as public, it ensures that the only way to manipulate the stack is through the well defined interface. In the process, it has coupled the data and the code that can manipulate it. ( Lets not get the friend functions involved here.). That is the code and data are bonded together or tied or encapsulated |
|||
|
|
|
encapsulation means-hiding data like using getter and setter etc. Abstraction means- hiding implementation using abstract class and interfaces etc. For further details: |
||||
|
|
|
||||
|
|
|
abstraction is hiding non useful data from users and encapsulation is bind together data into a capsule (a class). I think encapsulation is way that we achieve abstraction. |
|||
|
|
|
Encapsulation require modularity. It requires you to create objects that has the data and the methods to process the data. In this case you can view it as a module. Abstraction provides you a generalized view of your classes. |
|||
|
|
|
One could argue that abstraction is a technique that helps us identify which specific information should be visible, and which information should be hidden. Encapsulation is then the technique for packaging the information in such a way as to hide what should be hidden, and make visible what is intended to be visible. |
|||
|
|
protected by Nim Aug 7 '12 at 10:56
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.