上一页 1 ··· 4 5 6 7 8 9 10 下一页
01_拷贝构造定义#include#include #include using namespace std;struct Student{ int id=1001;//成员变量或对象 char *name=nullptr; int age=20; int ... Read More
posted @ 2016-03-30 10:45 夜色下的港湾 Views(180) Comments(0) Diggs(0) Edit
01_对象和malloc#include#include #include using namespace std;struct book_bag{ int color; int book_sum; book_bag(){ coutid =1001;... Read More
posted @ 2016-03-30 10:41 夜色下的港湾 Views(89) Comments(0) Diggs(0) Edit
1析构函数.#include#include #include using namespace std;struct Student{ int id=1001;//成员变量或对象 char *name=nullptr; int age=20; int sco... Read More
posted @ 2016-03-30 10:39 夜色下的港湾 Views(193) Comments(0) Diggs(0) Edit
1 C++成员变量初始化#include#include using namespace std;struct Student{ int id=1001; //成员变量或对象 char name[64]="zhangsan"; int age... Read More
posted @ 2016-03-30 10:36 夜色下的港湾 Views(114) Comments(0) Diggs(0) Edit
#include#include using namespace std;struct student{ int id; //成员变量或对象 char name[64]; int age; int score; //...};typed... Read More
posted @ 2016-03-30 10:31 夜色下的港湾 Views(160) Comments(0) Diggs(0) Edit
#includeusing namespace std;//constexpr 是更严格的定义只读变量,其要求该变量的初始化值必须是字面值常数(在未来版本可能扩展为也可以用其他只读变量初始化)int main(){ const int a =10; const int ... Read More
posted @ 2016-03-30 10:28 夜色下的港湾 Views(123) Comments(0) Diggs(0) Edit
#includeusing namespace std;void get(int a){ cout<<__func__<<"int"<<endl;}void get(int *a){ cout<<__func__<<"int*"<<endl;}int main(){ ... Read More
posted @ 2016-03-30 10:27 夜色下的港湾 Views(153) Comments(0) Diggs(0) Edit
#includeusing namespace std;int i =0;void init_cpu(){ cout<<++i<<" "<<__func__<<endl;}void init_serial(){ cout<<++i<<" "<<__func__<<end... Read More
posted @ 2016-03-30 10:25 夜色下的港湾 Views(113) Comments(0) Diggs(0) Edit
#includeusing namespace std;//typedef int (*PGET)(int);int get(int a){ cout<<__func__<<" "<<a<<endl; return a;}using PGET = int(*)(int)... Read More
posted @ 2016-03-30 10:19 夜色下的港湾 Views(66) Comments(0) Diggs(0) Edit
#includeusing namespace std;//函数前面有inline关键字修饰,那么这个函数就叫做内联函数//内联函数可以加速程序执行的时间//内联函数一定是代码量极少的函数,且不要有浮点操作;//内联函数的缺点是增加了代码段的数量,耗费更多的内存//典型的以空间换时... Read More
posted @ 2016-03-30 10:18 夜色下的港湾 Views(104) Comments(0) Diggs(0) Edit
上一页 1 ··· 4 5 6 7 8 9 10 下一页