为了账号安全,请及时绑定邮箱和手机立即绑定
#include <iostream>
using namespace std;
int main(void)
{
int x = 3;
int&y=x;
cout<<x<<y<<endl;
y = 88;
cout<<x<<y<<endl;

return 0;
}
#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;
}
感觉inline函数平时用的不多啊
char *str = new char[100];
if(NULL == str)
{
return -1;
}

//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello imooc");
//打印字符串
cout << str <<endl;

//释放内存
delete []str;
str = NULL;

return 0;
//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;
}
最后都要总结一下,很棒哦
已经讲得非常浅显易懂了!!!比学校老师简直better不知道多少倍!!就是不知道怎么加快播放速度这些东西
int getMax(int arr[],int count)
{ int a=arr[0];
for(int i = 1; i < count; i++)
{ if(a<arr[i])
元素比maxNum大,则获取数组中的值
a=arr[i]; }
}
return a;
}

int main(void)
{
//定义int数组并初始化
int numArr[] = {3, 8, 6,10,55,44,88};


cout << getMax(numArr, 7) << endl;
system("pause");
return 0;
}
问下内存泄漏在哪看,以前有,现在找不到在哪了
明了,简单,不错
不错哦,可惜和学校老师讲的不同步
关于"delete p;"是否能释放块内存应该是分情况的吧?
如果该块内存是基本类型的话,这句话应该是可以释放掉这一块内存的,例如:
int *p = new int[1000];
如果该块内存是自定义类型的话,这句话应该是只能释放掉第一个元素所占的内存,例如:
Person *p = new Person[1000];
其中Person是自定义类。
应该是const int * const p=&a;
#include <stdlib.h>
#include <iostream>
using namespace std;
int main(void)
{
int x = 3;
int &y = x;//定义y是x的应用
cout <<x <<","<< y << endl; //第一次打印
system("pause");
y = 10; //修改y的值
cout << x <<","<< y <<endl;//第二次打印
system("pause");
return 0;
}
注:经过VS编译过。
激动得从椅子上摔下来
课程须知
本课程是C++初级课程 熟练掌握C语言开发语言基础语法
老师告诉你能学到什么?
1、C++语言引用的魅力 2、C++语言const的用法 3、C++语言函数默认值及函数重载 4、C++语言内存管理

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消