3
votes
7answers
2k 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 …
0
votes
3answers
63 views
Abstraction of behavioural logic - is there a design pattern?
Hi all,
I need to abstract some behavioural code and have a problem trying to reference the objects in the class that is calling these behaviours, let me try to explain:
My "pare …
1
vote
2answers
107 views
SQL query generator for Perl with stored procedures support
Current code base I'm working on is full of ad-hoc conditional string concatenations producing less than clear SQL queries. I want to make them maintainable, but since using DBIx:: …
2
votes
4answers
57 views
How well does static code analysis work with Spring and other abstractions?
I'm in a situation where I'm required to make at least some effort to remove never-used code from my source code. The general preference is to use a static code analysis tool. We …
0
votes
1answer
26 views
Fatal error: Class NAME not found in (…PATH) ?
Hi
What may be the problem if i get the following error.
while i am extending a class i got this error
example:
class ModuleUser extends
AbstractModule
Fatal error: Cl …
0
votes
5answers
162 views
How many levels of abstraction do I need in the data persistence layer?
I'm writing an application using DDD techniques. This is my first attempt at a DDD project. It is also my first greenfield project and I am the sole developer. I've fleshed out the …
0
votes
1answer
66 views
Designing an OS abstraction layer
While Developing an OS Abstraction layer for a multi-modular system, which approach should one take:
Create a Shared Library of OS services and each module is built to use it and …
3
votes
5answers
530 views
Level of Indirection solves every Problem
What does the quote "Level of Indirection solves every Problem" mean in Computer Science?
0
votes
1answer
22 views
How to differ abstraction form a software component
How can we clearly differ architectural term abstraction from a software component,
can abstraction lie within a software component?
2
votes
3answers
55 views
shared functionality between C# console apps
I have two console apps, Query and Update, that share some functionality. I wanted to have the two classes inherit from a common base class, but the problem is that, for a console …
15
votes
21answers
2k 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 Exte …
1
vote
3answers
28 views
Should a service be given a reference to another, or should the caller gain extra responsibility?
There are two classes in my project (using ASP.NET MVC): AuthenticationService, and ProfileService.
When a new user registers at my site the Authentication controller's Register ac …
0
votes
4answers
49 views
How does an environment (e.g. Ruby) handle massive integers?
My integers in Ruby (MRI) refuse to overflow. I've noticed the class change from fixnum to bignum but I'm wondering how this is modeled and what sort of process ruby uses to perfo …
40
votes
26answers
2k views
Why does it seem that most programmers tend to write all their code at the lowest possible level of abstraction?
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 encoun …
0
votes
2answers
25 views
Abstracting Sorted Values as Key-Value
I am writing an interface to a sorted collection of objects. As is the usual, I leave it up to the user to specify how these items are sorted. I am currently torn however, between …
