issues
search
junxnone
/
xwiki
https://junxnone.github.io/xwiki/
0
stars
0
forks
source link
Programing CPP STD
#82
Open
junxnone
opened
3 years ago
junxnone
commented
3 years ago
标准库
C++ Standard Library
几种实现
GNU - [
libstdc++
] [
Docs
]
MSVC - [
STL
] [
STL Overview
]
LLVM - [
libcxx
] [
Docs
]
NVIDIA - [
libcudacxx
] [
Docs
]
HPX [
hpx
] [
Docs
]
Apache -
stdcxx
?? 不再开发?
......
组成
标准输入输出流(cin、cout、cerr等)
数学函数(sqrt、sin、cos等)
字符串处理函数(strlen、strcpy、strcat等)
动态内存分配相关函数(new、delete等)
异常处理机制(try、throw、catch等)
C++标准库容器(vector、list、set、map等)
算法(排序、查找、合并、去重等)
迭代器(iterator)
函数对象(function object)
智能指针(shared_ptr、unique_ptr等)
UseCase
Reference
C++ Standard Library - wikipedia
标准库
C++ Standard Library
几种实现
组成
UseCase
Reference