cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<cwctype> (wctype.h)
函数
iswalnum
iswalpha
C++11
iswblank
iswcntrl
iswctype
iswdigit
iswgraph
iswlower
iswprint
iswpunct
iswspace
iswupper
iswxdigit
towctrans
towlower
towupper
wctrans
wctype
类型
wctrans_t
wctype_t
wint_t
常量
WEOF
参考
<cwctype>
头文件
<cwctype> (wctype.h)
宽字符类型
此头文件声明了一组函数,用于分类和转换单个宽字符。
有关如何使用
"C"
区域设置对标准 ASCII 字符集进行分类的更多信息,请参阅
<cctype>
。
函数
字符分类函数
它们检查作为参数传递的字符是否属于某个类别
iswalnum
检查宽字符是否为字母数字
(函数)
iswalpha
检查宽字符是否为字母
(函数)
iswblank
检查宽字符是否为空白字符
(函数)
iswcntrl
检查宽字符是否为控制字符
(函数)
iswdigit
检查宽字符是否为十进制数字
(函数)
iswgraph
检查宽字符是否有图形表示
(函数)
iswlower
检查宽字符是否为小写字母
(函数)
iswprint
检查宽字符是否可打印
(函数)
iswpunct
检查宽字符是否为标点字符
(函数)
iswspace
检查宽字符是否为空白符
(函数)
iswupper
检查宽字符是否为大写字母
(函数)
iswxdigit
检查宽字符是否为十六进制数字
(函数)
字符转换函数
两个在字母大小写之间转换的函数
towlower
将大写宽字符转换为小写
(函数)
towupper
将小写宽字符转换为大写
(函数)
可扩展的分类/转换函数
iswctype
检查宽字符是否具有某种属性
(函数)
towctrans
使用转换规则进行转换
(函数)
wctrans
返回字符转换规则
(函数)
wctype
返回字符属性
(函数)
类型
wctrans_t
宽字符转换
(类型)
wctype_t
宽字符类型
(类型)
wint_t
宽字符整型
(类型)
常量
WEOF
宽文件结束符
(常量)