約11,800件1ページ目

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

  • 最終更新日:1年以内
  • 2023/11/21 -explicitにマークすることで1引数のときにコピーコンストラクタとごっちゃになる不慮の事故を防いでくれる。 例えばこんなケース。参考.

    2024/6/14 -C++20では、関数を条件付きで explicit にする構文が追加された。コンストラクタと変換演算子に指定する explicit 指定子に、 explicit(true) 、 explicit(false) の ...

    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/29 -コンストラクタ呼び出しはこれを使いましょう。使うことを進める理由と()呼び出しとの違いを説明します。 と、その前にC++の変数初期化について ...

    2024/3/2 -引数が1つのコンストラクタは変換コンストラクタという機能に注意が必要で、explicitキーワードを付けで無効化すると良いが、コピーコンストラクタにはexplicitキーワード ...

    2023/11/18 -The explicit keyword in C++ is used to restrict implicit conversions from happening. It is primarily used with constructors and conversion operators. Implicit ...

    2023/9/13 -Why does `std::span` require an explicit constructor to use in a templated function? [duplicate] · array is not span even if convertible to. · When template ...

    2023/12/20 -In this article, we will explore the differences between implicit and explicit constructors in C++ and provide examples to illustrate their usage.

    2024/6/11 -std::optional::コンストラクタ · 概要 · テンプレートパラメータ制約 · 効果 · 例外 · delete定義される条件 · 定数式に評価される条件 · トリビアルに定義される条件 · explicit ...

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