#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;
}
#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;
}
//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)
{
//定义常量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;
}
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;
}
{ 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是自定义类。
如果该块内存是基本类型的话,这句话应该是可以释放掉这一块内存的,例如:
int *p = new int[1000];
如果该块内存是自定义类型的话,这句话应该是只能释放掉第一个元素所占的内存,例如:
Person *p = new Person[1000];
其中Person是自定义类。
2017-03-20
#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编译过。
#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编译过。