Files
Obsidian-Main/02. PARA/03. Resources(資源)/C++17/Structured binding declaration.md
Awin Huang 7c542aca5d vault backup: 2022-07-06 20:33:32
Affected files:
.obsidian/workspace
02. PARA/03. Resources(資源)/C++17/Structured binding declaration.md
2022-07-06 20:33:32 +08:00

7 lines
162 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Structured binding declaration 可以把對應的 tuple、pair、vector 展開,讓 code 更好讀。
## 展開 tuple
假設我們有一個 tuple
```cpp
```