iOS - strcmp(const char *__s1, c
2018-01-19 本文已影响61人
SkyMing一C
图片源自网络
函数: int strcmp(const char *__s1, const char *__s2);
所在头文件:iOS11.2/usr/include/string.h
功能:比较字符串s1和s2。
使用:
当s1<s2时,返回值<0
当s1==s2时,返回值=0
当s1>s2时,返回值>0
即:两个字符串自左向右逐个字符相比(按ASCII值大小相比较),直到出现不同的字符或遇'\0'为止。如:
"A"<"B" "a">"A" "computer">"compare"