#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后面是谁,谁就不能变,就这么简单:
int const *p;* 是取p指向地址中的值的意思,值得就是 *p(p地址指向的值)不能变,p可以指向其他变量的地址;
int *const p; p是地址,不能变了,*p(p指向的值)可以变。
int const *p;* 是取p指向地址中的值的意思,值得就是 *p(p地址指向的值)不能变,p可以指向其他变量的地址;
int *const p; p是地址,不能变了,*p(p指向的值)可以变。
2017-10-05