为了账号安全,请及时绑定邮箱和手机立即绑定
看不了,加载不出来
//const
#include <iostream>
using namespace std;
int main(void)
{
//定义常量count
const int count = 3;
const int *p = &count;
//打印count次字符串Hello C++
for(int i = 0; i < count; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
int x = 3;
//定义引用,y是x的引用
int &y=x;
//打印x和y的值
cout<<x<<endl;
cout<<y<<endl;
//修改y的值
y = 20;
//再次打印x和y的值
cout<<x<<","<<y<<endl;
return 0;
}
引用必须初始化
把const修饰的右边部分看成一个整体,例如int const *p就变成int const(*p),也就是const修饰的是指针指向的内容,所以内容不能改变即*p不能变,也就是不能用*p=4这种操作。int *const p相当于int *const (p),也就是const修饰的是指针p,指针p不能改变指向,所以p=&y这种操作不对。
真的是迷哦,俩个数比大小,必须输出6才提示正确通过
评论里为何不能回复评论?
快乐学习 哈哈哈
一个月后 回来重新 看看 发现全懂了 哎 不容易 啊
//const
#include <iostream>
using namespace std;
int main(void)
{
//定义常量count
int count = 3;
int *p = &count;
//打印count次字符串Hello C++
for(int i = 0; i < *p; i++)
{
cout << "Hello imooc" << endl;
}
system("pause");
return 0;
}
//const
#include <iostream>
using namespace std;
int main(void)
{
//定义常量count
const int count = 3;
const int *const p = &count;
//打印count次字符串Hello C++
for(int i = 0; i < *p; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
这个课的感觉是建立在学过c的基础上,对c的指针要熟悉
实测int *q = p;也可以实现指针引用。
-------------------------
确定是引用不是赋值?
指针p 赋值给指针q
//const
#include <iostream>
using namespace std;
int main(void)
{
//定义常量count
const int count = 3;
const int *p = &count;
//打印count次字符串Hello C++
for(int i = 0; i < 3; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
课程须知
本课程是C++初级课程 熟练掌握C语言开发语言基础语法
老师告诉你能学到什么?
1、C++语言引用的魅力 2、C++语言const的用法 3、C++语言函数默认值及函数重载 4、C++语言内存管理

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消