約101,000件1ページ目

日本語のみで絞り込む

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

  • 最終更新日:6か月以内
  • 2024/5/6 -The first choice that satisfies the requirements of the respective cast operator is selected, even if it cannot be compiled (see example). If the cast can be ...

    2024/3/13 -A member or a member template of a class template may be explicitly specialized for a given implicit instantiation of the class template, even if the member or ...

    2023/12/20 -Explicit constructors are user-defined constructors that you write in your code. They allow you to control how objects of your class are initialized. You can ...

    2024/1/10 -Explicit object parameters in function pointers make no sense. This is not an MSVC issue, it's simply not valid code. A free function pointer cannot have ...

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

    2024/3/4 -Explicit type casting, also known as type conversion or type coercion, occurs when the programmer explicitly converts a value from one data type to another.

    2023/12/13 -Every implementation would then have a Mutex.cpp file like above with its appropriate implementation to which the lock/unlock calls are forwarded. Unfortunately ...

    2024/5/15 -auto can be constrained with C++ concepts template<typename Range, typename T> concept range_of = std::same_as<std::ranges::range_value_t<Range>, T>; ...

    2024/5/11 -The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++. ... Now, there is no explicit mention of the ...

    2023/12/1 -A destructor is a member function that is invoked automatically when the object goes out of scope or is explicitly destroyed by a call to delete or delete[] . A ...