std::experimental::basic_string_view<CharT,Traits>::operator=
来自 cppreference.cn
< cpp | experimental | basic string view
basic_string_view& operator=( const basic_string_view& view ) noexcept = default; |
(library fundamentals TS) | |
用 view
的视图替换当前视图。
目录 |
[编辑] 参数
view | - | 要复制的视图 |
[编辑] 返回值
*this
[编辑] 复杂度
常量。
[编辑] 示例
运行此代码
#include <iostream> #include <experimental/string_view> int main() { std::experimental::string_view v = "Hello, world"; v = v.substr(7); std::cout << v << '\n'; }
输出
world
[编辑] 参见
构造一个 basic_string_view (公开成员函数) |