File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 "ios" : " cpp" ,
2121 "istream" : " cpp" ,
2222 "ostream" : " cpp" ,
23- "xiosbase" : " cpp"
23+ "xiosbase" : " cpp" ,
24+ "cctype" : " cpp" ,
25+ "cmath" : " cpp" ,
26+ "cstddef" : " cpp" ,
27+ "cstdint" : " cpp" ,
28+ "cstdio" : " cpp" ,
29+ "cstdlib" : " cpp" ,
30+ "cstring" : " cpp" ,
31+ "cwchar" : " cpp" ,
32+ "iostream" : " cpp" ,
33+ "iterator" : " cpp" ,
34+ "memory" : " cpp" ,
35+ "new" : " cpp" ,
36+ "stdexcept" : " cpp" ,
37+ "typeinfo" : " cpp" ,
38+ "xfacet" : " cpp" ,
39+ "xlocale" : " cpp" ,
40+ "xlocinfo" : " cpp" ,
41+ "xlocnum" : " cpp" ,
42+ "xmemory" : " cpp" ,
43+ "xmemory0" : " cpp" ,
44+ "xstddef" : " cpp"
2445 }
2546}
Original file line number Diff line number Diff line change 11#include < iterator>
22#include < iostream>
33#include < vector>
4- using namespace std ;
4+ using std::vector ;
55
66/* ****************
77
Original file line number Diff line number Diff line change 3030
3131## C/C++
3232
33- ### const
33+ < details >< summary > const</ summary >< br >
3434
3535``` cpp
3636// 类
@@ -84,6 +84,10 @@ int* const function7(); // 返回一个指向变量的常指针,使用:i
84843. 常量引用,经常用于形参类型,即避免了拷贝,又避免了函数对值的修改;
85854. 修饰成员函数,说明该成员函数内不能修改成员变量。
8686
87+
88+ </details>
89+
90+
8791### volatile
8892
8993```cpp
You can’t perform that action at this time.
0 commit comments