約119,000,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/3/19 -Examples include conversions from smaller to larger integral types, and conversions from derived classes to base classes. Explicit conversions (casts): Explicit ...

    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/7/11 -The 'explicit' keyword in C++ is a crucial feature for developers aiming to prevent unintended type conversions that can lead to bugs and unpredictable ...

    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/3/13 -Explicit specialization may be declared in any scope where its primary template may be defined (which may be different from the scope where the primary template ...

    2024/7/11 -Take advantage of implicit and explicit operators to convert between user-defined types and improve the readability of your code.

    2024/4/23 -In this example, the code defines a class named MyNumber, which encapsulates an integer value (number) and provides an explicit constructor to initialize it.

    2023/8/24 -In this paper, we explore the mechanism of class embeddings and have an insight that more explicit and meaningful class embeddings can be generated based on ...

    2023/11/15 -Benefits of explicitly defaulted and deleted functions. In C++, the compiler automatically generates the default constructor, copy constructor, copy-assignment ...