Namespaces Namespaces allow to group entities like classes, objects and functions under a name. This way the global scope can be divided in "sub-scopes", each one with its own name.The format of namespaces is:namespace identifier{ entities}Where identifier is any valid identifier and entities is the set of classes, objects and functions that are included within the namespace. For example:1234 namespace myNamespace{int a, b;}In ...
Sunday, March 28, 2010
Subscribe to:
Posts (Atom)