About 75,500 results
Open links in new tab
  1. Namespace - Wikipedia

    Namespaces are commonly structured as hierarchies to allow reuse of names in different contexts. As an analogy, consider a system of naming of people …

  2. Namespace in C++ - GeeksforGeeks

    May 22, 2026 · A namespace in C++ is a container used to organize identifiers like variables, functions, and classes. It helps prevent naming conflicts …

  3. Namespaces - cppreference.com

    The using-directive using namespace std; at any namespace scope introduces every name from the namespace std into the global namespace (since the …

  4. Namespaces and using directives - C# | Microsoft Learn

    5 days ago · Learn how to organize C# code with namespaces, file-scoped namespace declarations, global usings, static usings, and type aliases.

  5. programming languages - What is a Namespace? - Stack Overflow

    Jun 13, 2009 · A namespace provides a container to hold things like functions, classes and constants as a way to group them together logically and to …

  6. C++ Namespaces - W3Schools

    Namespaces A namespace is a way to group related code together under a name. It helps you avoid naming conflicts when your code grows or when you …

  7. Namespace - Glossary - MDN

    Nov 7, 2025 · Namespace is a context for identifiers, a logical grouping of names used in a program. Within the same context and same scope, an …

  8. 2.9 — Naming collisions and an introduction to namespaces

    Feb 18, 2025 · In C++, any name that is not defined inside a class, function, or a namespace is considered to be part of an implicitly-defined namespace …

  9. Dynamic type creation and names for built-in types - Python

    4 days ago · The return value is a 3-tuple: metaclass, namespace, kwds metaclass is the appropriate metaclass, namespace is the prepared class …

  10. Namespaces - C++ Users

    In this case, the variables a and b are normal variables declared within a namespace called myNamespace. In order to access these variables from …