为了账号安全,请及时绑定邮箱和手机立即绑定
不知道说啥,三个字:棒极了
我已经刷卡了,比!学生卡
//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 < *p; 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 = 5 ;
//再次打印x和y的值
cout << x << "," << y <<endl;
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
int x = 3;
//定义引用,y是x的引用
int &y = x;
//打印x和y的值
cout<< x <<","<< y <<endl;

//修改y的值
y = 50;
//再次打印x和y的值
cout<< x << ","<< y <<endl;
return 0;
}
system("pause");
引用做参数:
声明函数:void fun(int &a,int &b);
函数调用:fun(x,y);
语法:
基本数据类型引用:&a2 = a1;
结构体类型引用:Student &b2 = b1;
指针类型引用:*&p2 = p2;
int *p = new int[20];

delete []p;

p = NULL:
include <string.h>
#include <iostream>
using namespace std;
int main(void)
{
//在堆中申请100个char类型的内存
char *str = new char[100];
//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello imooc");
//打印字符串
cout<<str<<endl;
//释放内存
delete []str;
str=NULL;
return 0;
}
不错!代码正确还可以打印出结果!之前我好像没注意
打了小萝卜头
James,可能想当一个段子手= =
我又看到了家教reborn!James,你故意的...
课程须知
本课程是C++初级课程 熟练掌握C语言开发语言基础语法
老师告诉你能学到什么?
1、C++语言引用的魅力 2、C++语言const的用法 3、C++语言函数默认值及函数重载 4、C++语言内存管理

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消