Abstraction is a computer science concept in which an implementation is separated from its interface.

learn more… | top users | synonyms

1
vote
3answers
63 views

overriding equals method when dealing with inheritance

I have been reading about how best to override the equals method when dealing with subclasses and here I have found quite a few posts. They recommend different ways of implementing a solution using ...
2
votes
2answers
55 views

Confused by the use of Parent to Child in a constructor

I hope I can get some clarification regarding this issue. So a class hierarchy looks like this: AbstractClass, ConcreteClass1 and ConcreteClass2. ConcreteClass1 extends AbstractClass and ...
1
vote
1answer
59 views

Is there any way of defining interfaces in Javascript? [closed]

I know, there is not any built-in support for abstraction in JavaScript. Is there any way of defining interfaces in Javascript?
2
votes
1answer
22 views

Is the distinction between vertex and pixel shader necessary or even beneficial?

From what I've been able to get, both vertex and pixel shader operations boil down to passing data and doing a lot of the same with it for every available unit. Surely, vetex and pixel shaders are in ...
1
vote
1answer
141 views

MIT Scheme Message Passing abstraction Mailman procedure

I previously asked a question concerning message passing Abstraction here: MIT Scheme Message Passing Abstraction The question asked that I: Write a mailman object factory (make-mailman) that takes ...
0
votes
1answer
25 views

Convention for placing isolated classes in Rails app

I am writing a Rails application which requires a few Ruby classes to communicate with a third party site, sort of like a custom pseudo API. I'm having trouble figuring out how to best fit this code ...
-2
votes
2answers
65 views

Extract common property and common functionality from two classes [closed]

What is the best way to abstract or extract the common functionality from the classes below using OOP and C#? Notes: UPDATE: from an OOP point of view, the use of inheritance makes sense. However ...
0
votes
0answers
30 views

Abstraction - How to create the correct inherited class based on what is stored in the database

I have the following abstract class: class Media { function Get Media() { // Get the media type } } And the following classes that derive from that class: class ImageMedia ...
-1
votes
0answers
14 views

any book/forum talks about abstraction?

After several years' working as a programmer, I think one most important thing is abstraction, that is how to split a big problem into pieces. I profit everything from it: easier to code && ...
0
votes
1answer
59 views

Can i access a concrete method of an abstract class in direct child class?

Is there a way we can access the concrete method's of an abstract class in the direct child class as below abstract class ParameterBase { public void test() { ...
-1
votes
4answers
67 views

Implementing a class that calls interface methods?

I'm really searching for the answer to this. I want to create a generic piece of code that just walks a directory tree. Maybe it's just a static class that contains one method. No problem for that. ...
1
vote
1answer
57 views

Behavior of static methods/variables change after adding instance variable in Java

This isn't so much of a problem as it is a question. I have several classes that inherit the following abstract class: public abstract class PixelEditorWindow { protected static int windowHeight, ...
0
votes
1answer
72 views

How to set a property in Abstract class when using RestTemplate with Spring for Android

I am using Spring for Android to request data from my restful server and gson to Converter json to Java objetct without accessing any function in the object. As there is a json property "user_id", ...
1
vote
1answer
64 views

C# style enums in C++

I'm trying to write a log library which would use an external tool i'm looking for convenient way to add Key-strings to the output stream to help parsing by the external tool while having the least ...
0
votes
2answers
86 views

C++ how do I make a 2d engine platform independent

Create a simple 2D sprite engine with a cross platform, abstracted API ■ The demo should be completely cross platform and have no platform specific headers ■ The cross platform code is isolated ...
0
votes
0answers
11 views

PHP: Generalizing array construction

So I have different types of course syntax, and therefore must construct a different array for every different case. I want to generalize the array construction so that array() takes in the course ...
0
votes
0answers
25 views

Using abstraction for GUI pieces with common functionality. What are the options of design patterns or workarounds?

My question is on the topic of inherited GUI elements. For the sake of simplicity, I will use the term "GUI control" to address a JPanel or .NET UserControl/Control type of class which can be found in ...
0
votes
0answers
9 views

Abstraction shared libraries and SONAME

I would like to realize shared libraries, providing the same service (i.e. API) but on a different "target" (for example, one for mysql, one for postgresql, etc.. - but it has nothing to do with ...
0
votes
1answer
43 views

How can I move this viewcontroller-reliant method over to a helper class?

I am using the Evernote API, and I have created a helper class that will contain the Evernote API-specific methods in an effort to keep code as abstracted as possible. But there is one method that ...
2
votes
1answer
118 views

Data layer abstraction for Windows Phone and Windows 8 Modern apps?

I'm trying to port my WP apps to Windows 8 while maintaining portable model and viewmodel classes. However, my apps have used SQLCE for Windows Phone 7, and so my original model classes are all ...
0
votes
0answers
52 views

Using Interface Confusing

I am looking at a framework that put different interfaces to each services such as: public interface ICategoryService { Category GetCategoryById(int categoryId); void InsertCategory(Category ...
6
votes
3answers
173 views

Sharing functions between namespaces in Clojure

I may very well be approaching this in the wrong way, so please forgive me of my naiveté: In order to learn Clojure I've begun porting my OAuth client library for Python to Clojure. I'm doing this by ...
1
vote
3answers
66 views

How can I implement abstraction in this scenario?

I have a parent class Product and two child classes: Toothbrush and Chainsaw. They are set-up as shown below. Here's the parent class: class Product { protected $productid; protected $type; ...
1
vote
2answers
84 views

Ideal way to model elements on a web page as classes in WebDriver for abstraction and re-use

What could be the ideal way to model the elements on a webpage as classes for the sake of abstraction and re-usability? Currently, what I have created is a BaseElement.java class that contains the ...
0
votes
1answer
68 views

Abstracting a Test Class

I have a few tests right now that uses PowerMock and Mockito to "mock objects". The problem is, all those tests create the same mocks over and over again. Is it possible to have an abstract class from ...
1
vote
2answers
67 views

Define abstractions for proper constructor injection and ISP (of SOLID)

Suppose I want to abstract operations on a collection for different reasons: Now for the sake of simplicity, let's reason on a collection of class Book { public string Title { get; set; }; ...
2
votes
6answers
296 views

What is the difference between abstract class and pure abstract class in C++?

I asked my main question in the title. I don't repeat it. (DRY :D) Edit: Example: Iterators are pure abstractions: Anything that behaves like an iterator is an iterator. What does it mean?
0
votes
3answers
145 views

Parameterized Constructor for Polygon

I am creating a brick breaker game for school using ArrayLists, abstraction, and polymorphism. I have created an abstract class DrawableBrick that includes a draw method. I have already successfully ...
2
votes
2answers
48 views

Reduce the cost of abstraction layer by inlining

In my project I have some abstraction layers like this one: Vector3 normalizeVector(Vector3 v); Vector3 vectorMultiplyMatrix(Vector3 v, Matrix3 m); Which are simply "proxy" functions to platform ...
0
votes
1answer
25 views

Abstracting the Request object

I'm running some basic unit tests on an MVC4 application. Within one of the main controller methods there is a call to Request.UserHostAddress. However when I run my unit test it fails (Object null ...
2
votes
1answer
84 views

How to share class constants between classes?

I have 3 different classes that both use some constant values. Currently, I'm defining all of them for each of the class. How do I centralize them? I tried to create a new static class with just the ...
1
vote
1answer
80 views

How to separate persistance in ActiveRecord?

I'm currently builing an application in Ruby (not Rails) which uses ActiveRecord as an ORM and sqlite as a database. A sample code, just to clarify my question: class User < ActiveRecord::Base ...
-1
votes
3answers
238 views

How this program implements the concept of abstraction? [duplicate]

Today,i was searching about abstraction and i got this example....how this program implements the concept of abstraction and please also elaborate what is abstraction in c++ #include ...
1
vote
0answers
27 views

What is the real definition of Abstraction?

I have seen different meanings for abstraction in several web sites. Some sites say that Selecting relevant data and ignoring insignificant data Some sites say that Taking common class ...
-1
votes
1answer
166 views

C# Interface and Base Classes - Design Pattern Code Review [closed]

I have a Base Class that inherits from a Base Interface; public interface IMyBase { void SetupComponent(MyBase baseClass); } public class MyBase: IMyBase { public virtual void ...
3
votes
5answers
166 views

How to identify levels of abstraction? [closed]

I'm always striving to improve the quality of my work. And so I came to read Kent Beck's great little book Smalltalk Best Practice Patterns. I'm not a Smalltalk programmer but many of the patterns are ...
1
vote
1answer
42 views

Abstracting connection errors

I've got an interface called IConnection public interface IConnection { bool IsConnected { get; } Task ConnectAsync(IEndPoint remoteEP); Task<int> SendAsync(byte[] data, int ...
2
votes
2answers
81 views

Modularizing SQL even if only syntactic sugar

Is there a way to modularize SQL code so that is more readable and testable? My SQL code often becomes a long complicated series of nested joins, inner joins, etc. that are hard to write and hard ...
8
votes
1answer
347 views

Programming jQuery UI like ExtJS

I'm trying to develop an abstraction layer to jQuery UI that allows define Widgets as Objects just like (or similar) to ExtJS. This is the concept: var mydialog = new $.ui.dialog({ modal:true, ...
0
votes
0answers
47 views

Hardware Abstraction Interface

I'll attempt to explain the best I can. I'm attempting to make an API to a piece of hardware (PCI card). The hardware has onboard (volatile) memory that stores objects and commands to perform ...
0
votes
1answer
58 views

Abstracting away boiler plate sqlalchemy call to allow different options in a try/except block

I'm trying to abstract my sqlalchemy query call, the complete unmodified call looks like this: Session.query(User).options(FromCache('redis1')).filter(User.id == user_id).all() The dynamic parts I ...
1
vote
3answers
90 views

Programming to an interface or other abstract types [closed]

In a SO question on interface programming a commenter says - Most answers to this question have the common misconception that "programming to an interface" means use the interface language ...
0
votes
1answer
35 views

Writing a save method in php for a general api

I have recently been playing with some very general OOP Concepts and learning to abstract my code. For this purpose I wrote a general car api that saves data to an array. The problem is I can add, ...
1
vote
1answer
238 views

Generic Interface w/ Polymorphism to handle Objects

Previous Post removed; Updated: So I have a unique issue, which is possibly fairly common though. Properties are quite possibly are most commonly used code; as it requires our data to keep a ...
13
votes
7answers
608 views

Should I use public or private variables?

I am doing a large project for the first time. I have lots of classes and some of them have public variables, some have private variables with setter and getter methods and same have both types. I ...
1
vote
1answer
40 views

Abstracting Parse objects?

I want to use Parse (parse.com) in my app. Parse uses PFObject models. I'd like to use my own models throughout my code (so that it doesn't depend on parse). If possible I'd like to design my app ...
1
vote
2answers
173 views

Object oriented design principle Abstraction

While reading about abstraction, I came across the following statement "Abstraction captures only those details about an object that are relevant to the current perspective" For eg. From the ...
0
votes
1answer
66 views

composition vs MI example

I have come across this library, orocos bfl. It uses external matrix libraries, and in wrapping them, they use multi-inheritence; such as class Matrix: public Matrix_Wrapper, public Boost::Matrix { ...
0
votes
1answer
60 views

WebGL: How can I create WebGL graphics without always needing to write boilerplate code? [closed]

I've just started experimenting with WebGL. There is a lot of boilerplate code required to create the simplest of 3D applications. Is there a way that I can avoid needing to write exorbitant amounts ...
0
votes
1answer
59 views

Sql views vs jdbc select-join, where to abstract?

I have 3 tables (see below), Table A describes a product, Table B holds inventory information for different dates, and Table C holds the price of each product for different dates. Table A ...

1 2 3 4 5 9