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. |
|||
|
|
|
|
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 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" |
||
|
|
|
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. |
||
|
|
|
|
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: 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.
|
|||
|
|
|
|
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. |
||
|
|
