約694件1ページ目

日本語のみで絞り込む

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

  • 最終更新日:1週間以内
  • 2日前 -It's simple: "string" literals in C++ are pointers to characters. std::vector has a constructor which takes a begin and end iterator and creates a vector with ...

    5日前 -Explicit instantiation of a constructor cannot use a template parameter list ... Whenever the arguments are some C++ basic types, there are no ADL-associated ...

    2日前 -It's simple: "string" literals in C++ are pointers to characters. std::vector has a constructor which takes a begin and end iterator and creates a vector with ...

    5日前 -1,3,5) The type/type templates std::in_place_t , std::in_place_type_t and std::in_place_index_t can be used in the constructor's parameter list to match the ...

    1日前 -I still don't understand why it would be necessary for C++ to default to non-explicit constructors when C at the time did not have constructors and did not have ...

    6日前 -For primitives, I personally prefer explicit initialization. For more complex types, I think about it this way: Do I want the default value provided by the ...

    6日前 -In this example, there will be an explicit deduction guide from the second line, and implicit deduction guide templates synthesized from the constructors of A .

    3日前 -I need to create a factory function to create an instance that can accept any type with different number of arguments. I'm having two classes Employee and ...

    4日前 -Since we have not explicitly defined a constructor in the struct, Clang AST provides it. ... 1 not able to handle the default template type parameter or explicit ...

    12時間前 -Learn how to convert integers to strings in C++ using various methods. Explore the usage of stringstream class, to_string() method, & boost::lexical_cast.