Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::move_constructible

      From cppreference.com
      <cpp‎ |concepts
       
       
      Concepts library
       
      Defined in header<concepts>
      template<class T>
      concept move_constructible=std::constructible_from<T, T>&&std::convertible_to<T, T>;
      (since C++20)

      The conceptmove_constructible is satisfied ifT is a reference type, or if it is an object type where an object of that type can be constructed from an rvalue of that type in both direct- and copy-initialization contexts, with the usual semantics.

      [edit]Semantic requirements

      IfT is an object type, thenmove_constructible<T> is modeled only if given

      • rv, an rvalue of typeT, and
      • u2, a distinct object of typeT equal torv,

      the following are true:

      • After the definitionT u= rv;,u is equal tou2;
      • T(rv) is equal tou2; and
      • IfT is not const-qualified, thenrv's resulting state (after the definition/expression is evaluated in either bullets above) is valid but unspecified; otherwise, it is unchanged.

      [edit]References

      • C++23 standard (ISO/IEC 14882:2024):
      • 18.4.13 Conceptmove_constructible [concept.moveconstructible]
      • C++20 standard (ISO/IEC 14882:2020):
      • 18.4.13 Conceptmove_constructible [concept.moveconstructible]

      [edit]See also

      checks if a type can be constructed from an rvalue reference
      (class template)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/concepts/move_constructible&oldid=177892"

      [8]ページ先頭

      ©2009-2025 Movatter.jp