我感觉没学过C直接看这个真没几个人能懂。有很多操作都是有一点基础才看得懂的.真心话!!!
时间: 2016-08-30
时间: 2016-08-30
2016-12-21
看 const 右边开始 是修饰谁 ?
int a =5;
int const *p = &a,const 修饰 *p ,*p 不能变; a =10✅, *p=10 ❌;
int * const p = &a, const 修饰 p, p不能变;
int a =5;
int const *p = &a,const 修饰 *p ,*p 不能变; a =10✅, *p=10 ❌;
int * const p = &a, const 修饰 p, p不能变;
2016-12-01
#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;
}
说一个比较好记的方法来区分 int const *p与 int* const p,把*读作pointer to然后从后往前读.
第一个int const *p就可以读作 p is a pointer to const int,p是指向常量的指针
第二个int* const p就可以读作 p is a const pointer to int,p是指向int型的常指针
第一个int const *p就可以读作 p is a pointer to const int,p是指向常量的指针
第二个int* const p就可以读作 p is a const pointer to int,p是指向int型的常指针
2016-11-23