std::strcmp
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstring> 中定义
|
||
int strcmp( const char *lhs, const char *rhs ); |
||
。比较两个NULL结尾的字节串。比较是字典.
原文:
Compares two null-terminated byte strings. The comparison is done lexicographically.
。
lhs
和rhs
都应该指向有效的字符串.原文:
Both
lhs
and rhs
should point to valid strings.[编辑] 。参数。
lhs, rhs | - | 。
null结尾的字节串的指针进行比较。
原文: pointers to the null-terminated byte strings to compare |
===。 返回值。===
。负值
lhs
是“小于”rhs
.原文:
Negative value if
lhs
is less than rhs
.。 0如果
lhs
是“等于”rhs
.。正值
lhs
是“大于”rhs
.原文:
Positive value if
lhs
is greater than rhs
.[编辑] 。为例。
#include <vector> #include <cstring> #include <algorithm> #include <iostream> int main() { std::vector<const char*> cats {"Heathcliff", "Snagglepuss", "Hobbes", "Garfield"}; std::sort(cats.begin(), cats.end(), [](const char *strA, const char *strB) { return std::strcmp(strA, strB) < 0; }); for (const char *cat : cats) { std::cout << cat << '\n'; } }
输出:
Garfield Heathcliff Hobbes Snagglepuss
[编辑] 。另请参阅。
一定量的两个字符串的字符进行比较 原文: compares a certain amount of characters of two strings (函数) | |
比较两个缓冲区 (函数) | |
按照目前的语言环境比较两个字符串 原文: compares two strings in accordance to the current locale (函数) | |
C documentation for strcmp
|