Top "Abstraction" questions

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

Generic function pointers in C

I have a function which takes a block of data and the size of the block and a function pointer …

c function-pointers abstraction
What does "abstract over" mean?

Often in the Scala literature, I encounter the phrase "abstract over", but I don't understand the intent. For example, Martin …

scala abstraction
Abstraction in Java?

Today i heard from my friend, that encapsulation is not only achieving information hiding but also abstraction. How does it …

java oop abstraction
Use an enum to select which class to instantiate

I have an enum that I am trying to associate to dto's: public enum DtoSelection { dto1, dto2, dto3, } There are 108 …

c# abstraction