約114,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/5/6 -The first choice that satisfies the requirements of the respective cast operator is selected, even if it cannot be compiled (see example). If the cast can be ...

    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/10/2 -There is a way to explicitly instantiate template functions, but is unable to instantiate a function that I can link against (and have different name).

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

    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 ...

    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 ...

    2023/8/24 -We try to explain each topic by giving very simple C++ samples and by using more complete C++ examples to highlight modern way of programming. Table of Contents.

    2023/7/31 -Explicit preconditions for function signatures. Inspired by this post from user Bimedialinks1 I created a tiny, header-only library (MIT licensed) that allows ...

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