We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://yujingsea.github.io/2022/02/05/31/
前言笔记整理自mooc程序设计与算法(三)C++面向对象程序设计 郭炜老师讲的还是很清楚的 第一章:从 C 到C++引用 类型名 & 引用名 = 某变量名; 12int n = 4; int & r = n; r引用了n,r的类型是int & 之后对r的修改就是对n的修改,对n的修改就是对r的修改 定义引用时一定要将其初始化成引用某个变量,之后不会再引用其他变量 在C
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://yujingsea.github.io/2022/02/05/31/
前言笔记整理自mooc程序设计与算法(三)C++面向对象程序设计 郭炜老师讲的还是很清楚的 第一章:从 C 到C++引用 类型名 & 引用名 = 某变量名; 12int n = 4; int & r = n; r引用了n,r的类型是int & 之后对r的修改就是对n的修改,对n的修改就是对r的修改 定义引用时一定要将其初始化成引用某个变量,之后不会再引用其他变量 在C
The text was updated successfully, but these errors were encountered: