Difference between revisions of "Namespace"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External Links)
 
(One intermediate revision by one other user not shown)
Line 16: Line 16:
  
 
* [[Computer programming]]
 
* [[Computer programming]]
 +
* [[Name binding]]
 
* [[Variable (computer science)]]
 
* [[Variable (computer science)]]
 
* [[XML namespace]]
 
* [[XML namespace]]
Line 22: Line 23:
  
 
* [http://en.wikipedia.org/wiki/Namespace Namespace] @ Wikipedia
 
* [http://en.wikipedia.org/wiki/Namespace Namespace] @ Wikipedia
 +
 +
 +
[[Category:Computer programming]]
 +
[[Category:Computer science]]
 +
[[Category:Computing]]
 +
[[Category:Names]]

Latest revision as of 19:11, 25 April 2016

A namespace is a set of named symbols, usually variables.

Description

Names or identifiers are keys allowing access to symbol values.

Namespaces provide a level of direction to specific identifiers, thus making it possible to distinguish between identical identifiers.

This is similar to people names, where a surname could be thought of as a namespace that makes it possible to distinguish people who have the same given name.

Computer programming

In computer programming, namespaces are typically employed for the purpose of grouping symbols and identifiers around a particular behavior.

See also

External Links