Tagged Questions

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

learn more… | top users | synonyms

96
votes
39answers
10k views

Why do people use Java?

I've become very curious lately, what is it about Java that made it so popular? I've avoided learning it in detail because it seems like a very poor language at a very basic level. A good language ...
51
votes
26answers
3k views

Why does it seem that most programmers tend to write all their code at the lowest possible level of abstraction? [closed]

In my thirty years of programming experience, it seems to me that the vast majority of the source code that I have read, and the vast majority of the programmers that I have encountered, tend to write ...
39
votes
23answers
2k views

Why should I use a human readable file format?

Why should I use a human readable file format in preference to a binary one? Is there ever a situation when this isn't the case? EDIT: I did have this as an explanation when initially posting the ...
29
votes
9answers
15k views

Abstraction VS Information Hiding VS Encapsulation

Can you tell me what is difference between ABSTRACTION and INFORMATION HIDING in software development? I am confused abstraction hides detail implementation and information hiding abstracts whole ...
25
votes
23answers
3k views

Why are interfaces preferred to abstract classes?

I recently attended an interview and they asked me the question "Why Interfaces are preferred over Abstract classes?" I tried giving a few answers like: We can get only one Extends functionality ...
23
votes
7answers
844 views

How much abstraction is too much?

In an Object Oriented Program: How much abstraction is too much? How much is just right? I have always been a nuts and bolts kind of guy. I understood the concept behind high levels of ...
22
votes
13answers
987 views

Clean Code: Should Objects have public properties?

I'm reading the book "Clean Code" and am struggling with a concept. When discussing Objects and Data Structures, it states the following: Objects hide their data behind abstractions and expose ...
19
votes
15answers
21k views

difference between abstraction and encapsulation?

What is the precise difference between encapsulation and abstraction?
15
votes
2answers
384 views

Is this a problem typically solved with IOC?

My current application allows users to define custom web forms through a set of admin screens. it's essentially an EAV type application. As such, I can't hard code HTML or ASP.NET markup to render a ...
11
votes
6answers
431 views

more advantages or disadvantages to delegate members over classic functions?

class my_class { public int add_1(int a, int b) {return a + b;} public func<int, int, int> add_2 = (a, b) => {return a + b;} } add_1 is a function whereas add_2 is a delegate. ...
10
votes
2answers
453 views

Interface and repository abstraction break subqueries in Entity Framework 4.1 DbContext API?

The goal: I'm trying to use the new Entity Framework 4.1 DbContext API (using Database First with the new ADO.NET DbContext Generator for the POCO classes) and provide a layer of abstraction using ...
10
votes
11answers
1k views

When should I return the Interface and when the concrete class?

when programming in Java I practically always, just out of habit, write something like this: public List<String> foo() { return new ArrayList<String>(); } Most of the time without ...
10
votes
17answers
919 views

Abstraction away from CSS

Let me make something quite clear. I. Hate. CSS. It is a never-ending nightmare. Every minor layout change feels like a hack. Solutions to problems seem to often involve jiggering numbers around ...
9
votes
4answers
2k views

Is an ORM redundant with a NoSQL API?

with MongoDB (and I assume other NoSQL database APIs worth their salt) the ways of querying the database are much more simplistic than SQL. There is no tedious SQL queries to generate and such. For ...
9
votes
8answers
380 views

How can future programming languages better facilitate abstraction?

One of the key properties to designing comprehensible software (and, indeed, designing anything at all) is to develop a good set of abstractions. These days, those abstractions include things like ...
9
votes
9answers
312 views

How can I reduce the redundancies in my jQuery code?

The size of my JavaScript file is getting out of hand because I have hundreds of links, and each one has its own jQuery function even though they all peform basically the same task. Here's a short ...
9
votes
15answers
3k views

Can abstract thinking be taught? [closed]

I broke some of the cardinal rules for hiring and am now stuck with a fairly 'bad' hire. My biggest concern is that the person's abstract thinking is really weak. So, my question is do you guys think ...
9
votes
2answers
3k views

System.Web.Abstractions: what is it good for?

... absolutely nothing? What part of the puzzle does it fill for ASP.NET WebForms and ASP.NET MVC respectively? Can you somehow create a ASP.NET * base-application which uses System.Web.Abstractions ...
8
votes
7answers
334 views

Meaning of Leaky Abstraction?

What does the term "Leaky Abstraction" mean? (Please explain with examples. I often have a hard time grokking a mere theory.)
8
votes
8answers
496 views

Is it better to use List or Collection?

I have an object that stores some data in a list. The implementation could change later, and I don't want to expose the internal implementation to the end user. However, the user must have the ability ...
8
votes
4answers
1k views

Best Way to Abstract Initializing Attributes

What's the best way to abstract this pattern: class MyClass attr_accessor :foo, :bar def initialize(foo, bar) @foo, @bar = foo, bar end end A good solution should take superclasses into ...
7
votes
4answers
159 views

Interfaces (interface/abstract class) are not abstractions?

Of late, I have been reading posts which talks about the supposed wrong notion that interfaces are abstractions. One such post is http://blog.ploeh.dk/2010/12/02/InterfacesAreNotAbstractions.aspx I ...
7
votes
4answers
259 views

Curiosity beyond abstractions: how is bytecode executed? how do device drivers work?

Everything I've seen on *nix has been a set of abstractions off hardware, but I'm curious as to how the hardware works. I've programmed in assembly, but that's still only a set of abstractions. How ...
7
votes
2answers
2k views

Is HttpContextWrapper all that…useful?

I've been going through the process of cleaning up our controller code to make each action as testable. Generally speaking, this hasn't been too difficult--where we have opportunity to use a fixed ...
7
votes
2answers
916 views

What is the benefit of a 'promise' abstraction in CommonJS?

I'm reading this article and the section on the promise abstraction seems a little overly complicated to me. The following is given as an example: requestSomeData("http://example.com/foo") // ...
7
votes
6answers
384 views

When is enough abstraction enough [closed]

I tried asking this and it got closed very quickly for being too long. (Which it was.) But I think it's a genuine question that needs to be discussed, so here's a much shorter version: Abstractions ...
7
votes
5answers
794 views

What is Joel's “two levels of abstraction”?

I was listening to the Stack Overflow Podcast #34 (59:00 - 1:02:00) and Joel mentioned the difficulty of pointers and recursion. He also mentioned thinking in two levels of abstraction. He also ...
7
votes
19answers
879 views

Is knowing some basic low-level stuff essential to all programmers?

Should all decent programmers be expected to know at least something about low-level stuff such as the following: The gist of how garbage collection is implemented, how memory management works ...
7
votes
4answers
484 views

Best way to use Javascript's “good parts”

On Stackers' recommendation, I have been reading Crockford's excellent Javascript: The Good Parts. It's a great book, but since so much of it is devoted to describing the best way to use Javascript's ...
7
votes
9answers
467 views

How to approach something complex?

You know that particular part of your code that is essential for the project but will probably take a lot of time to get it done? Do you ever get the feeling that you'd rather work on something else ...
6
votes
1answer
234 views

Abstracting away from data structure implementation details in Clojure

I am developing a complex data structure in Clojure with multiple sub-structures. I know that I will want to extend this structure over time, and may at times want to change the internal structure ...
6
votes
11answers
413 views

Explaining abstraction to a non-programmer

Abstraction is a concept that seems difficult to explain, without reverting to using programming terminology. I've thought about it a lot, and I can't come up with a satisfactory answer. Does anyone ...
6
votes
12answers
3k views

what to use for php db abstraction layer?

I have been using Creole for a year, but Creole project is dead now.. what are other good abstractions for php ?
6
votes
7answers
4k views

What is the difference between Abstraction and Polymorphism

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.
6
votes
8answers
688 views

Worst Abstraction Inversion

What is the worst (due to either prevalence or severity) example of abstraction inversion that you see in programming today? For those of you who are not familiar with the concept, abstraction ...
6
votes
11answers
439 views

How do you get people to value abstraction and flexibility over “just getting it done”?

I sometimes have difficulties with other people who wish to solve a problem when they wish to skip the official interfaces and access underlying implementation details directly. They argue that doing ...
5
votes
3answers
161 views

Adding custom behavior to Clojure's sequences

Part of what's so powerful about Clojure is that all the core data-types implement the same sequence abstraction: clojure.lang.ISeq. This means that functions like "first", "concat", "cons", "map", ...
5
votes
5answers
134 views

Would you abstract your LINQ queries into extension methods

On my current project we set ourselves some goals for the code metrics "Maintainability Index" and "Cyclometic Complexity". Maintainability Index should be 60 or higher and Cyclometic Complexity 25 or ...
5
votes
2answers
130 views

Command Pattern seems needlessly complex (what am I failing to understand?)

I've read up on the Command Pattern, and I think I'm missing something. The Command object exists to abstract away the details of the Receiver object. It seems to me that we could simply stop here, ...
5
votes
4answers
246 views

Design of interface abstraction

Currently, I try to write a small game program (Skat) as a hobby project. Skat is a trick-taking game were two players play against a single player. As there are different kinds of players (lokal ...
5
votes
1answer
163 views

Simple way to unit test a lazy load property

I'm somewhat of a newbie in unit testing. Stumbled upon a problem of unit testing a lazy load property and wondering if there is a simple solution to that: private SubscriptionType _subscriptionType; ...
5
votes
4answers
144 views

Anything wrong with a really large __init__?

I'm writing a Python program with a GUI built with the Tkinter module. I'm using a class to define the GUI because it makes it easier to pass commands to buttons and makes the whole thing a bit easier ...
5
votes
3answers
194 views

Design(How-to) of classes containing collections of other classes

How to design classes involving collections of other classes? General Example: A Workspace contains number of Projects . A Project contains large number of Resources . Each Resource may contain ...
5
votes
3answers
313 views

How Does One Make Scala Control Abstraction in Repeat Until?

I am Peter Pilgrim. I watched Martin Odersky create a control abstraction in Scala. However I can not yet seem to repeat it inside IntelliJ IDEA 9. Is it the IDE? package demo class Control { def ...
5
votes
4answers
353 views

Objective-C: how to prevent abstraction leaks

I gather that in Objective-C I must declare instance variables as part of the interface of my class even if these variables are implementation details and have private access. In "subjective" C, I ...
5
votes
5answers
432 views

When is enough abstraction enough? [closed]

I was having a conversation with a co-worker a few days ago. When I mentioned that a new coding technology he's interested in doesn't seem like anything that couldn't already be done with existing ...
5
votes
6answers
476 views

Hard coding vs Generic coding : Where to draw the line?

I'm not exactly sure how to word this but I'll try. Suppose you have some settings in some piece of your program where your 80% sure you won't ever have to modify again. How do you know where to ...
5
votes
4answers
332 views

Where do all “bulk” operations belong in DDD?

In DDD one of the key concepts is Repository, which allows you to retrieve Entities (or Aggregate Roots) and then save them back after they are updated. Let assume that we need to perform some 'bulk' ...
5
votes
5answers
2k views

Level of Indirection solves every Problem

What does the quote "Level of Indirection solves every Problem" mean in Computer Science?
4
votes
3answers
65 views

C: Public aliases to hide a static function

In C, I have a function that implements both the encryption and decryption routines of a block cipher. In order to both maintain a common naming and use convention, and to leave open the possibility ...

1 2 3 4 5 6