Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::experimental::basic_string_view<CharT,Traits>::operator=

      From cppreference.com
      <cpp‎ |experimental‎ |basic string view
       
       
       
       
      std::experimental::basic_string_view
       
      basic_string_view& operator=(const basic_string_view& view)noexcept=default;
      (library fundamentals TS)

      Replaces the view with that ofview.

      Contents

      [edit]Parameters

      view - view to copy

      [edit]Return value

      *this

      [edit]Complexity

      Constant.

      [edit]Example

      Run this code
      #include <iostream>#include <experimental/string_view>int main(){std::experimental::string_view v="Hello, world";    v= v.substr(7);std::cout<< v<<'\n';}

      Output:

      world

      [edit]See also

      constructs abasic_string_view
      (public member function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/experimental/basic_string_view/operator%3D&oldid=93185"

      [8]ページ先頭

      ©2009-2026 Movatter.jp