This commit is contained in:
2022-06-02 17:55:14 +08:00
commit f86dc56286
598 changed files with 87559 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
- 等號右邊的值
- 臨時的值,例如運算的結果
# rvalue參考
可以用兩個`&`來參考rvalue。例如
```
int c{5};
int&& rtepm {c + 3};
```