Difference between revisions of "Library (computing)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Framework (computing))
 
(One intermediate revision by the same user not shown)
Line 24: Line 24:
 
* [[Computer science]]
 
* [[Computer science]]
 
* [[Framework (computing)]]
 
* [[Framework (computing)]]
 +
* [[Software development kit]]
 
* [[Subroutine]]
 
* [[Subroutine]]
  
Line 29: Line 30:
  
 
* [https://en.wikipedia.org/wiki/Library_(computing) Library (computing)]
 
* [https://en.wikipedia.org/wiki/Library_(computing) Library (computing)]
 +
 +
[[Category:Computer programming]]
 +
[[Category:Computer science]]
 +
[[Category:Computing]]

Latest revision as of 08:53, 4 October 2016

In computer science, a library is a collection of non-volatile resources used by computer programs.

Description

A library is a collection of implementations of behavior, written in terms of a language, that has a well-defined interface by which the behavior is invoked.

  • This means that as long as a higher level program uses a library to make system calls, it does not need to be re-written to implement those system calls over and over again.
  • In addition, the behavior is provided for reuse by multiple independent programs.

Library contents

Libraries may include:

See also

External links