C 参考手册
- C 语言
- C 关键词
- 预处理器
- C 标准库头文件
- 类型支持
- 程序支持工具
- 变参数函数
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 空终止字节字符串
- 空终止多字节字符串
- 空终止宽字符串
- wcscpy, wcscpy_s
- iswcntrl
- iswprint
- iswspace
- iswblank
- iswgraph
- iswpunct
- iswalnum
- iswalpha
- iswupper
- iswlower
- iswdigit
- iswxdigit
- wmemcpy, wmemcpy_s
- wmemmove, wmemmove_s
- wmemcmp
- wmemchr
- wmemset
- wcspbrk
- wcsspn
- wcscspn
- wcstok, wcstok_s
- wcsncmp
- wcscoll
- wcsxfrm
- wcschr
- wcsrchr
- wcsncpy, wcsncpy_s
- wcscat, wcscat_s
- wcsncat, wcsncat_s
- wcsstr
- wcscmp
- wcstof, wcstod, wcstold
- wcstoimax, wcstoumax
- wcslen, wcsnlen_s
- wcstol, wcstoll
- wcstoul, wcstoull
- wctype
- iswctype
- towlower
- towupper
- wctrans
- towctrans
- 算法
- 数值
- 文件输入/输出
- 本地化支持
- 原子操作库
- 线程支持库
- 实验性 C 标准库
- 有用的资源
- 符号索引
- 注释
wcscoll
定义于头文件 <wchar.h>
|
||
int wcscoll( const wchar_t *lhs, const wchar_t *rhs ); |
(C95 起) | |
按照 LC_COLLATE 类别所定义的当前安装的本地环境,比较二个空终止宽字符串。
参数
lhs, rhs | - | 指向要比较的空终止宽字符串的指针 |
返回值
若 lhs
小于(前趋) rhs
则为负值。
若 lhs
等于 rhs
则为 0 。
若 lhs
大于(后随) rhs
则为负值。
注意
对照顺序为字典顺序:国家字母表(其等价类)中字母的位置拥有高于其大小写或变体的优先级。在等价类内,小写字符先于其大写等价物对照,而且本地环境限定的顺序可能应用到有发音符号的字符。一些本地环境中,字符组作为单个对照单元比较。例如, "ch" 在捷克语中后随 "h" 而前趋 "i" , "dzs" 在匈牙利语中后随 "dz" 而前趋 "g" 。
示例
运行此代码
#include <stdio.h> #include <wchar.h> #include <locale.h> void try_compare(const wchar_t* p1, const wchar_t* p2) { if(wcscoll(p1, p2) < 0) printf("%ls before %ls\n", p1, p2); else printf("%ls before %ls\n", p2, p1); } int main(void) { setlocale(LC_ALL, "en_US.utf8"); printf("In the American locale: "); try_compare(L"hrnec", L"chrt"); setlocale(LC_COLLATE, "cs_CZ.utf8"); printf("In the Czech locale: "); try_compare(L"hrnec", L"chrt"); setlocale(LC_COLLATE, "en_US.utf8"); printf("In the American locale: "); try_compare(L"år", L"ängel"); setlocale(LC_COLLATE, "sv_SE.utf8"); printf("In the Swedish locale: "); try_compare(L"år", L"ängel"); }
可能的输出:
In the American locale: chrt before hrnec In the Czech locale: hrnec before chrt In the American locale: ängel before år In the Swedish locale: år before ängel