約1,310,000件1ページ目

日本語のみで絞り込む

条件を指定して検索しています。すべての条件を解除する

  • 最終更新日:1年以内
  • 2023/10/24 -In C++, the explicit keyword is used with a constructor to prevent it from performing implicit conversions. A C++ explicit constructor is marked to not ...

    2024/7/18 -The 'explicit' keyword in C++ is a crucial feature for developers aiming to prevent unintended type conversions that can lead to bugs and unpredictable behavior ...

    2024/6/20 -[edit] Explanation. 1) When the C-style cast expression is encountered, the compiler attempts to interpret it as the following cast expressions, in this order:.

    2023/12/10 -A requires clause on an explicit specialization declaration isn't syntactically permitted in the first place. Instead explicit specializations are matched ...

    2024/4/23 -The explicit keyword is used with constructors in C++ to prevent them from doing implicit conversions. A C++ explicit constructor is marked to not implicitly ...

    2023/9/4 -The purpose of make_pair is to construct a pair by deducing the types from the arguments. This was necessary before C++17 because there were no class template ...

    2024/1/10 -Explicit object parameters in function pointers make no sense. This is not an MSVC issue, it's simply not valid code. A free function pointer cannot have ...

    2023/10/9 -C++23 explicit object parameter (a.k.a. deducing this) introduces the ability to name the previously implicit “this” argument explicitly.

    2023/12/20 -Explicit constructors are user-defined constructors that you write in your code. They allow you to control how objects of your class are initialized. You can ...

    2024/3/13 -A member or a member template of a class template may be explicitly specialized for a given implicit instantiation of the class template, even if the member or ...

    Function template-Partial template specialization-Class template