login or register
u
p
 remember me!
namespace
prints friendly
namespace


please note:
- the text and code below is from The Pseudopedia
- it has been imported raw for GetWiki
{{About|namespaces in general|their use in computing|Namespace (computer science)}}{{selfref|For their use in Wikipedia, see Wikipedia:Namespace.}}{{Unreferenced|date=November 2009}}In general, a namespace is an abstract container providing context for the items (names, or technical terms, or words) it holds and allowing disambiguation of homonym items having the same name (residing in different namespaces).As a rule, names in a namespace cannot have more than one spelling, that is, its components cannot share the same name. A namespace is also called a context, as the valid meaning of a name can change depending on what namespace applies. Names in it can represent objects as well as concepts, whether it is a natural or ethnic language, a constructed language, the technical terminology of a profession, a dialect, a sociolect, or an artificial language (e.g., a programming language).For many programming languages, a namespace is a context for identifiers. In an operating system, an example of namespace is a directory. It contains items which must have unique names. In the Java programming language, items that appear in namespaces have a short (local) name and unique long "qualified" names for use outside the name space. Also, some languages (such as C++) combine namespace and names in a process called name mangling in order to eradicate ambiguity. Below is an example of a namespace in C++:namespace Box1{
int boxSide = 4;
}namespace Box2{
int boxSide = 12;
}int main () {
cout << Box1::boxSide << endl; //output 4
cout << Box2::boxSide << endl; //output 12
return 0;
}

See also

{{Wiktionary|namespace}} * XML Namespaces {{compu-prog-stub}}''NamensraumEspacio de nombresEspace de noms이름공간名前空間Przestrzeń nazwEspaço de nomesПространство имёнเนมสเปซKhông gian tên''

- content above as imported from The Pseudopedia
- "namespace" does not exist on GetWiki
- time: 1:07pm EDT - Thu, Jul 29 2010