Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::char_traits<char>::move,std::char_traits<wchar_t>::move,std::char_traits<char8_t>::move,std::char_traits<char16_t>::move,std::char_traits<char32_t>::move

      From cppreference.com
      <cpp‎ |string‎ |char traits
       
       
       
       
      static char_type*
          move( char_type* dest,const char_type* src,std::size_t count);
      (constexpr since C++20)

      Copiescount characters from the character string pointed to bysrc to the character string pointed to bydest.

      Performs correctly even if the ranges[srcsrc+ count) and[destdest+ count) overlap.

      SeeCharTraits for the general requirements on character traits forX::move.

      Contents

      [edit]Parameters

      dest - pointer to a character string to copy to
      src - pointer to a character string to copy from
      count - the number of characters to copy

      [edit]Return value

      dest

      [edit]Exceptions

      Throws nothing.

      [edit]Complexity

      Linear incount.

      [edit]Defect reports

      The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 7C++98the copy was guaranteed to perform correctly if
      src is in[destdest+ count), but not the other
      way round (i.e.dest is in[srcsrc+ count))
      also guaranteed
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/string/char_traits/move&oldid=158858"

      [8]ページ先頭

      ©2009-2025 Movatter.jp