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

来自cppreference.com
 
 
 
 
constexpr basic_string_view& operator=( const basic_string_view& view ) noexcept = default;
(C++17 起)

view 的内容替换视图。

目录

[编辑] 参数

view - 要复制的视图

[编辑] 返回值

*this

[编辑] 复杂度

常数。

[编辑] 示例

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

输出:

world

[编辑] 参阅

构造 basic_string_view
(公开成员函数) [编辑]
为字符串赋值
(std::basic_string<CharT,Traits,Allocator> 的���开成员函数) [编辑]