#pointers-in-cc
Read more stories on Hashnode
Articles with this tag
引用运算符(&): 基本引用 #include <iostream> int main() { int a = 10; int& ref = a; // ref 是 a 的引用,ref 和 a 绑定在一起 ref = 20; // 修改 ref 也会修改...