About 31,100 results
Open links in new tab
  1. C++ keyword: using - cppreference.com

    Language support library Concepts library (C++20) Diagnostics library Memory management library Metaprogramming library (C++11) General utilities library Containers library Iterators library Ranges …

  2. Using Keyword in C++ STL - GeeksforGeeks

    Jul 22, 2024 · The using keyword in C++ is a tool that allows developers to specify the use of a particular namespace. This is especially useful when working with large codebases or libraries where there …

  3. What is the logic behind the "using" keyword in C++?

    Dec 27, 2013 · What is the logic behind the "using" keyword in C++? It is used in different situations and I am trying to find if all those have something in common and there is a reason why the "using" …

  4. using declaration | Microsoft Learn

    Aug 3, 2021 · When a using declaration is made, the synonym created by the declaration refers only to definitions that are valid at the point of the using declaration. Definitions added to a namespace after …

  5. Using-declaration - cppreference.com

    A using-declaration with more than one using-declarator is equivalent to a corresponding sequence of using-declarations with one using-declarator. (since C++17)

  6. 7.13 — Using declarations and using directives – Learn C++

    Mar 5, 2025 · Fast forward to today -- if you’re using the standard library a lot, typing std:: before everything you use from the standard library can become repetitive, and in some cases, can make …

  7. Master the C++ "using" Keyword | A Practical Guide

    The using Keyword This lesson introduces the using keyword in C++, focusing on namespaces, enums, and type aliasing

  8. C++ Tutorial - W3Schools

    C++ is a popular programming language. C++ is used to create computer programs, and is one of the most used languages in game development. C++ was developed as an extension of C, and both …

  9. What does using mean in c++? - Stack Overflow

    Mar 28, 2010 · The using directive would solve it. Notice that if you alias a function declaration that has the same parameter types and constness as an explicit declaration (like f () in this case), then the …

  10. C++ using | How using keyword works in C++ with examples?

    Apr 17, 2023 · Guide to C++ using. Here we discuss How using keyword works in C++ and Examples along with the codes and outputs in detail.