Fork me on GitHub

05 2022 档案

摘要:引用 1 #include <iostream> 2 using namespace std; 3 4 int main() { 5 int a; 6 int &b = a; 7 a = 5; 8 cout << "b=" << b; 9 return 0; 10 } 1.引用形如 int a=5; 阅读全文
posted @ 2022-05-30 09:12 衔清风与共 阅读(95) 评论(0) 推荐(0)