top of page
Search

Abstraction in Computer Science

The quality of dealing with ideas rather than events.


The essence of abstractions is preserving information that is relevant in a given context, and forgetting information that is irrelevant in that context.

– John V. Guttag[1]

Example: machine learning algorithms are algorithms built on data.

In software engineering and computer science, abstraction is:

the process of removing physical, spatial, or temporal details[2] or attributes in the study of objects or systems to focus attention on details of greater importance;[3] it is similar in nature to the process of generalization;


the creation of abstract concept-objects by mirroring common features or attributes of various non-abstract objects or systems of study[3] – the result of the process of abstraction.

Abstraction, in general, is a fundamental concept in computer science and software development.[4] The process of abstraction can also be referred to as modeling and is closely related to the concepts of theory and design. Models can also be considered types of abstractions per their generalization of aspects of reality.


Abstraction in computer science is closely related to abstraction in mathematics due to their common focus on building abstractions as objects, but is also related to other notions of abstraction used in other fields such as art.


Abstractions may also refer to real-world objects and systems, rules of computational systems or rules of programming languages that carry or utilize features of abstraction itself, such as:


the usage of data types to perform data abstraction to separate usage from working representations of data structures within programs;


the concept of procedures, functions, or subroutines which represent a specific of implementing control flow in programs;


the rules commonly named "abstraction" that generalize expressions using free and bound variables in the various versions of lambda calculus;


the usage of S-expressions as an abstraction of data structures and programs in the Lisp programming language;


the process of reorganizing common behavior from non-abstract classes into "abstract classes" using inheritance to abstract over sub-classes as seen in the object-oriented C++ and Java programming languages.



1. Guttag, John V. (18 January 2013).Introduction to Computation and Programming Using Python(Spring 2013 ed.). Cambridge, Massachusetts: The MIT Press.ISBN9780262519632.

Recent Posts

See All

Generative AI report

Top GenAI companies: OpenAI Google Anthropic Meta Mistral Stability AI MidJourney Top GenAI Models GPT 4 Gemini 1.5 Llama2 Mistral Claude Stable Diffusion

bottom of page