約38,600件1ページ目

日本語のみで絞り込む

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

  • 最終更新日:6か月以内
  • 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 ...

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

    2024/2/9 -Enables implicit conversion or explicit conversion from a class type to another type. [edit] Syntax. Conversion function is declared like a non-static member ...

    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/6/27 -Take languages like C++ and Java, for example. These are known for being quite explicit. You generally need to declare your variable types, function parameters, ...

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

    2024/5/12 -In other words, explicit conversion allows the programmer to typecast (change) the data type of a variable to another type. Hence, it is also called typecasting ...

    2024/7/9 -So I thought of a system that manages resources like RAII in C++ but with the explicitness of C. ... Any explicit, opt-in implementation of "RAII" is ...

    2024/5/11 -The C++ Core Guidelines are a set of tried-and-true guidelines, rules ... Now, there is no explicit mention of the iteration mechanism, and the loop ...

    2024/5/15 -auto can be constrained with C++ concepts template<typename Range, typename T> concept range_of = std::same_as<std::ranges::range_value_t<Range>, T>; ...