約142,000件1ページ目

日本語のみで絞り込む

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

  • 最終更新日:1年以内
  • 2024/8/12 -The function is explicit if and only if that constant expression evaluates to true. (since C++20). The explicit specifier may only appear within the decl- ...

    2024/7/11 -The explicit keyword in C++ is a powerful tool for preventing implicit type conversions and ensuring constructors are called intentionally. By using explicit, ...

    2023/10/24 -In C++, the explicit keyword is used with a constructor to prevent it from performing implicit conversions.

    2024/7/17 -I wrote the following program in c++23. Here I've overloaded member functions. But for all cases different compilers give different result as shown below in ...

    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/8/14 -C++ keyword: explicit. From cppreference.com. < cpp‎ | keyword · C++ · Compiler support · Freestanding and hosted · Language · Standard library.

    A.[Q1の件] > Sin_CoProc(double X)で計算が出来ると言うことは、その為の準備を asmでする必要がありますか? 普通に考えれば、Sin_Taylor()のものと、...

    2024/6/27 -What is an example of explicit programming? Think of a language like C++ or Java, where you explicitly declare the type of each variable. For instance, if you ...

    2024/2/28 -The explicit function specifier controls unwanted implicit type conversions. It can only be used in declarations of constructors within a class declaration.

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