約332件1ページ目

日本語のみで絞り込む

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

  • 最終更新日:1週間以内
  • 5日前 -... C++ constructors should be explicit ” (2023-04-08) instead. These guidelines ... constructor, then it must also provide a non- explicit default constructor.

    3日前 -Which of the following is not a recommended way to use a copy constructor? Explicit call to the copy constructor; Using “=” operator; In passing by value; In ...

    3日前 -A defaulted comparison operator function is a non-template comparison operator function (i.e. <=> , == , != , < , > , <= , or >= ) satisfying all following ...

    3日前 -... C++ struct semantics, of memory construction, copy assignment and ... constructor-like struct initialization that mimicked non-explicit constructors.

    4日前 -I'd say this case (in the <1% case) is one where explicit ordered initialization (via initialization list in the constructor) is justified, since that at ...

    5日前 -There are no guarantees about whether an explicit server Finish with an error status will be queued behind server writes or delivered immediately. Therefore ...

    4日前 -Returning arr will call a copy constructor of std::array with itself as the argument (because of mandatory copy elision), which will do the same for every ...

    6日前 -If an exception is thrown from a constructor or (rare) from a destructor of an object (regardless of the object's storage duration), destructors are called for ...

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

    3日前 -Function overriding is a redefinition of the base class function in its derived class with the same signature i.e. return type and parameters.