C++学习笔记(3)
摘要:
void tt7() { //int& a = 10;//编译器报错,没有为10分配内存空间 const int& b = 20;//为20分配了内存空间 //相当于int temp=20;const int& b=temp; } 不可以用字面常量初始化引用; 可以用字面常量初始化常引用; void 阅读全文
posted @ 2022-06-19 17:52 张德长 阅读(40) 评论(0) 推荐(0) 编辑
2022年6月19日 #
posted @ 2022-06-19 17:52 张德长 阅读(40) 评论(0) 推荐(0) 编辑
posted @ 2022-06-19 16:01 张德长 阅读(37) 评论(0) 推荐(0) 编辑