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>
<cstring> (string.h)
函数
memchr
memcmp
memcpy
memmove
memset
strcat
strchr
strcmp
strcoll
strcpy
strcspn
strerror
strlen
strncat
strncmp
strncpy
strpbrk
strrchr
strspn
strstr
strtok
strxfrm
类型
size_t
宏常量
NULL
参考
<cstring>
头文件
<cstring> (string.h)
C 字符串
此头文件定义了若干个操作
C字符串
和数组的函数。
函数
复制
:
memcpy
复制内存块
(函数)
memmove
移动内存块
(函数)
strcpy
复制字符串
(函数)
strncpy
从字符串复制字符
(函数)
连接
:
strcat
连接字符串
(函数)
strncat
从字符串追加字符
(函数)
比较
:
memcmp
比较两个内存块
(函数)
strcmp
比较两个字符串
(函数)
strcoll
使用 locale 比较两个字符串
(函数)
strncmp
比较两个字符串的字符
(函数)
strxfrm
使用 locale 转换字符串
(函数)
搜索
:
memchr
在内存块中定位字符
(函数)
strchr
在字符串中定位字符的首次出现
(函数)
strcspn
获取字符串中直到指定字符的跨度
(函数)
strpbrk
在字符串中定位字符
(函数)
strrchr
在字符串中定位字符的最后一次出现
(函数)
strspn
获取字符串中字符集的跨度
(函数)
strstr
定位子字符串
(函数)
strtok
将字符串分割成标记
(函数)
其他
:
memset
填充内存块
(函数)
strerror
获取指向错误消息字符串的指针
(函数)
strlen
获取字符串长度
(函数)
宏
NULL
空指针
(宏)
类型
size_t
无符号整数类型
(类型)