mirror of
https://github.com/huihut/interview.git
synced 2024-03-22 13:10:48 +08:00
创建test分支
This commit is contained in:
parent
b5b623afff
commit
c3684763d2
23
.vscode/settings.json
vendored
23
.vscode/settings.json
vendored
|
@ -20,6 +20,27 @@
|
||||||
"ios": "cpp",
|
"ios": "cpp",
|
||||||
"istream": "cpp",
|
"istream": "cpp",
|
||||||
"ostream": "cpp",
|
"ostream": "cpp",
|
||||||
"xiosbase": "cpp"
|
"xiosbase": "cpp",
|
||||||
|
"cctype": "cpp",
|
||||||
|
"cmath": "cpp",
|
||||||
|
"cstddef": "cpp",
|
||||||
|
"cstdint": "cpp",
|
||||||
|
"cstdio": "cpp",
|
||||||
|
"cstdlib": "cpp",
|
||||||
|
"cstring": "cpp",
|
||||||
|
"cwchar": "cpp",
|
||||||
|
"iostream": "cpp",
|
||||||
|
"iterator": "cpp",
|
||||||
|
"memory": "cpp",
|
||||||
|
"new": "cpp",
|
||||||
|
"stdexcept": "cpp",
|
||||||
|
"typeinfo": "cpp",
|
||||||
|
"xfacet": "cpp",
|
||||||
|
"xlocale": "cpp",
|
||||||
|
"xlocinfo": "cpp",
|
||||||
|
"xlocnum": "cpp",
|
||||||
|
"xmemory": "cpp",
|
||||||
|
"xmemory0": "cpp",
|
||||||
|
"xstddef": "cpp"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
#include<iterator>
|
#include<iterator>
|
||||||
#include<iostream>
|
#include<iostream>
|
||||||
#include<vector>
|
#include<vector>
|
||||||
using namespace std;
|
using std::vector;
|
||||||
|
|
||||||
/*****************
|
/*****************
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
## C/C++
|
## C/C++
|
||||||
|
|
||||||
### const
|
<details><summary>const</summary><br>
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
// 类
|
// 类
|
||||||
|
@ -84,6 +84,10 @@ int* const function7(); // 返回一个指向变量的常指针,使用:i
|
||||||
3. 常量引用,经常用于形参类型,即避免了拷贝,又避免了函数对值的修改;
|
3. 常量引用,经常用于形参类型,即避免了拷贝,又避免了函数对值的修改;
|
||||||
4. 修饰成员函数,说明该成员函数内不能修改成员变量。
|
4. 修饰成员函数,说明该成员函数内不能修改成员变量。
|
||||||
|
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
|
||||||
### volatile
|
### volatile
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
|
|
Loading…
Reference in New Issue
Block a user