std::basic_string<CharT,Traits,Allocator>::append_range
来自cppreference.com
<tbody>
</tbody>
template< container-compatible-range<CharT> R > constexpr std::basic_string& append_range( R&& rg ); |
(C++23 起) | |
后附 rg 中的全部字符。
等价于
return append(std::basic_string( std::from_range, std::forward<R>(rg), get_allocator()));
参数
| rg | - | 容器兼容范围 |
返回值
*this
复杂度
与 rg 的大小成线性。
异常
如果操作会导致 size() 超出 max_size(),那么就会抛出 std::length_error。
如果因为任何原因抛出了异常,那么此函数无效果(强异常安全保证)。
注解
| 功能特性测试宏 | 值 | 标准 | 功能特性 |
|---|---|---|---|
__cpp_lib_containers_ranges |
202202L |
(C++23) | 接受容器兼容范围的成员函数 |
示例
运行此代码
#include <cassert>
#include <string>
int main()
{
std::string head{"long long"};
const auto tail = {' ', 'i', 'n', 't'};
#ifdef __cpp_lib_containers_ranges
head.append_range(tail);
#else
head.append(tail.begin(), tail.end());
#endif
assert(head == "long long int");
}
参阅
| 后附字符到结尾 (公开成员函数) |