std::basic_string_view<CharT,Traits>::compare
来自 cppreference.com
< cpp | string | basic string view
constexpr int compare( basic_string_view v ) const noexcept; |
(1) | (自 C++17 起) |
constexpr int compare( size_type pos1, size_type count1, basic_string_view v ) const; |
(2) | (自 C++17 起) |
constexpr int compare( size_type pos1, size_type count1, basic_string_view v, size_type pos2, size_type count2 ) const; |
(3) | (自 C++17 起) |
constexpr int compare( const CharT* s ) const; |
(4) | (自 C++17 起) |
constexpr int compare( size_type pos1, size_type count1, const CharT* s ) const; |
(5) | (自 C++17 起) |
constexpr int compare( size_type pos1, size_type count1, const CharT* s, size_type count2 ) const; |
(6) | (自 C++17 起) |
比较两个字符序列。
1) 要比较的序列的长度
rlen
是 size() 和 v.size() 中较小的那个。该函数通过调用 traits::compare(data(), v.data(), rlen) 来比较这两个视图,并根据下表返回一个值条件 | 结果 | 返回值 | |
---|---|---|---|
Traits::compare(data(), v.data(), rlen) < 0
|
this 小于 v |
< 0 | |
Traits::compare(data(), v.data(), rlen) == 0
|
size() < v.size()
|
this 小于 v |
< 0 |
size() == v.size()
|
this 等于 v |
0 | |
size() > v.size()
|
this 大于 v |
> 0 | |
Traits::compare(data(), v.data(), rlen) > 0
|
this 大于 v |
> 0 |
2) 等价于 substr(pos1, count1).compare(v).
3) 等价于 substr(pos1, count1).compare(v.substr(pos2, count2)).
4) 等价于 compare(basic_string_view(s)).
5) 等价于 substr(pos1, count1).compare(basic_string_view(s)).
6) 等价于 substr(pos1, count1).compare(basic_string_view(s, count2)).
内容 |
[编辑] 参数
v | - | 要比较的视图 |
s | - | 指向要比较的字符字符串的指针 |
count1 | - | 要比较的当前视图的字符数量 |
pos1 | - | 要比较的当前视图中第一个字符的位置 |
count2 | - | 要比较的给定视图的字符数量 |
pos2 | - | 要比较的给定视图中第一个字符的位置 |
[编辑] 返回值
如果当前视图小于另一个字符序列,则为负值;如果两个字符序列相等,则为零;如果当前视图大于另一个字符序列,则为正值。
[编辑] 复杂度
1) 与比较的字符数量成线性关系。
[编辑] 示例
运行此代码
#include <string_view> int main() { using std::operator""sv; static_assert("abc"sv.compare("abcd"sv) < 0); static_assert("abcd"sv.compare("abc"sv) > 0); static_assert("abc"sv.compare("abc"sv) == 0); static_assert(""sv.compare(""sv) == 0); }
[编辑] 另请参阅
比较两个字符串 ( std::basic_string<CharT,Traits,Allocator> 的公有成员函数) | |
(C++17)(在 C++20 中移除)(在 C++20 中移除)(在 C++20 中移除)(在 C++20 中移除)(在 C++20 中移除)(C++20) |
按字典序比较两个字符串视图 (函数模板) |