01_拷贝构造定义#include#include #include using namespace std;struct Student{ int id=1001;//成员变量或对象 char *name=nullptr; int age=20; int ... Read More
01_对象和malloc#include#include #include using namespace std;struct book_bag{ int color; int book_sum; book_bag(){ coutid =1001;... Read More
1析构函数.#include#include #include using namespace std;struct Student{ int id=1001;//成员变量或对象 char *name=nullptr; int age=20; int sco... Read More
1 C++成员变量初始化#include#include using namespace std;struct Student{ int id=1001; //成员变量或对象 char name[64]="zhangsan"; int age... Read More
#include#include using namespace std;struct student{ int id; //成员变量或对象 char name[64]; int age; int score; //...};typed... Read More
#includeusing namespace std;//constexpr 是更严格的定义只读变量,其要求该变量的初始化值必须是字面值常数(在未来版本可能扩展为也可以用其他只读变量初始化)int main(){ const int a =10; const int ... Read More
#includeusing namespace std;void get(int a){ cout<<__func__<<"int"<<endl;}void get(int *a){ cout<<__func__<<"int*"<<endl;}int main(){ ... Read More
#includeusing namespace std;int i =0;void init_cpu(){ cout<<++i<<" "<<__func__<<endl;}void init_serial(){ cout<<++i<<" "<<__func__<<end... Read More
#includeusing namespace std;//typedef int (*PGET)(int);int get(int a){ cout<<__func__<<" "<<a<<endl; return a;}using PGET = int(*)(int)... Read More
#includeusing namespace std;//函数前面有inline关键字修饰,那么这个函数就叫做内联函数//内联函数可以加速程序执行的时间//内联函数一定是代码量极少的函数,且不要有浮点操作;//内联函数的缺点是增加了代码段的数量,耗费更多的内存//典型的以空间换时... Read More