命名空间
变体
操作

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> 的公有成员函数) [编辑]