約2,200件1ページ目

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

  • 最終更新日:1年以内
  • 対象とする言語:日本語
  • 2023/12/16 -なんとなく知っているC++explicit装飾子についてなんとなく知っているがちゃんと.

    2024/7/8 -概要. 型変換演算子のオーバーロードをする際、 operator キーワードの前に explicit ... C++ (廃案) · 処理系 · コンパイラの実装状況 · C++国際標準規格 · 標準規格と処理 ...

    2024/7/8 -コンストラクタと変換演算子に指定する explicit 指定子に、 explicit(true) ... C++ (廃案) · 処理系 · コンパイラの実装状況 · C++国際標準規格 · 標準規格と処理系 · 外部 ...

    2024/7/15 -... explicit Foo(int i) : _i(i) {} constexpr int GetValue() const { return _i; } private: int _i; }; int main() { // foo is const: constexpr Foo foo(5); // foo ...

    2024/5/29 -... explicit final デフォルトコンストラクタの明示的指定についてスマートポインタ ... 詳しくは以下のサイトにまとめられています。 https://en.cppreference.com/w/cpp ...

    2023/9/17 -明示的インスタンス生成定義. 明示的インスタンス生成定義は、テンプレート特殊化またはそのメンバーのインスタンス生成です。 Explicit instantiation definition syntax.

    2023/9/25 -If the explicit instantiation is for a class or member class, the elaborated-type-specifier in the declaration shall include a simple-template-id; otherwise, ...

    2023/10/19 -c++ - Explicit default constructors in C++17 - Stack Overflow · LWG2510 Tag types should not be DefaultConstructible ...

    2023/10/12 -次の例では C2768 が生成されます。 // C2768.cpp template<typename T> void f(T) {} void f<int>(int) {} // C2768 // an explicit specialization template ...

    2023/8/25 -この記事は、インテル® デベロッパー・ゾーンに掲載されている「Explicit Vector Programming – Best Known Methods」の日本語参考訳です。