|
I've written a JavaScript application that runs off Prototype & Scriptaculous. I'm thinking of rolling it out in as an open source product & would like it to be able to run on jQuery as well — I typically use jQuery for most of my other apps, except the...
Started by zemaj on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So, here, you are proposing an abstraction that abstraction on abstraction power that you are looking for without it being visible to the end user..
The same result (ideally) regardless of the browser.
|
|
As both encapsulation and abstraction relates to information hiding,can i mean encapsulation as a subset of abstraction?
Answer Snippets (Read the full thread at stackoverflow):
' abstraction ' is a concept which allow dealing with concrete objects in a fashion that reduces them to their abstract components structures are another way of providing ....
Encapsulation is just one way of achieving abstraction.
|
|
Possible Duplicate:
difference between abstraction and encapsulation?
How does abstraction differ from encapsulation?
Started by 123123 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Abstraction is the process of hiding the details and exposing only the essential used interchangeably with ....
Abstraction is the goal: the ability to think about the behaviour of a piece for everything else.
For a definition of each.
|
Ask your Facebook Friends
|
What is the difference between an 'Abstraction' and a 'Facade'?
Is there a difference at all? Or are the terms interchangeable?
Started by willem on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Abstraction....
Abstraction is a more vague term related to hiding functionality interface to it.
'Abstraction' is a general term, meaning to hide the concrete from the main body of your application.
A single common one, hence its name.
|
|
What is the precise difference between encapsulation and abstraction?
Started by Rocky on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Abstraction lets....
Berard of the Object Agency.
Here's a good read: Abstraction, Encapsulation, and Information Hiding by Edward V.
Abstraction is providing a generalization (say, over a set of behaviors).
Or specialized behavior(s).
|
|
I am confused about abstraction and encapsulation.What i feel is that class is encapsulation as it encapsulates data and behaviour,while interface is abstraction.Please comment
Started by Rohit on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I've quoted part of the relevant section below:
In object-oriented ... .
In particular, you are probably interested in abstraction with respect to object-oriented programming.
Look at the Wikipedia article on abstraction in Computer Science .
|
|
I have used many SQL abstraction libraries, such as ODBC, JDBC, and ActiveRecord. What are the abstraction options in the NoSQL / key-value store world?
I am mostly asking this so that if I choose a key-value store then I can use an abstraction library...
Started by Zubair on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
We have such an abstraction in InfoGrid called the Store.
A standard interface while remaining non trivial.
|
|
Hi,
I am confused about such concepts when I discussed with my friend.
My friend's opinions are
1) abstraction is about pure virtual function.
2) interface is not member functions, but interface is pure virtual functions.
I found that in C++ primer, interface...
Started by skydoor on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
An abstract class is just....
An abstract.
Abstraction means this complicated is that things that are implementation details in one context may not be in others.
Like Boost.ConceptCheck do a pretty good job of providing a substitute .
|
|
The definitions of "abstraction" and "encapsulation" seem very similar to me. I always confuse these terms. Please, clarify the difference by showing examples.
Started by Satya on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The behavior of the abstraction....
Abstraction focuses on the outside view of an object (i.e.
Information hiding is a type seen from the inside.
Data abstraction is a type seen from the outside.
Data abstraction and information hiding.
|
|
I seem to not understand two OOP concepts very well. Could you explain what abstraction and polymorphism are, preferably with real examples and code?
Thank you.
Started by Sambath on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
One example of a software abstractionvery easy.
You abstract the data your object holds into a logical view, even tho behind the scenes of abstraction and are defined as a list of abstract attributes.
That's abstraction.
|