摘要:
https://blog.csdn.net/xujidong1576324301/article/details/128608787 https://blog.csdn.net/secondtonone1/article/details/127347023 https://zhuanlan.zhih 阅读全文
摘要:
1 #include <iostream> 2 #include <bitset>///c++中控制进制的头文件 3 #include <stdlib.h>///c中的函数库 4 #include <bits/stdc++.h>///万能头文件,如果选用此头文件,就不用其他所有头文件 5 using 阅读全文
摘要:
this 是 C++ 中的一个关键字,也是一个 const 指针,它指向当前对象,通过它可以访问当前对象的所有成员。所谓当前对象,是指正在使用的对象。例如对于stu.show();,stu 就是当前对象,this 就指向 stu。 this 只能用在类的内部,通过 this 可以访问类的所有成员,包 阅读全文
摘要:
1 #include <iostream> 2 3 using namespace std; 4 5 // 基类 Shape 6 class Shape 7 { 8 public: 9 void setWidth(int w) 10 { 11 width = w; 12 } 13 void setH 阅读全文
摘要:
rotected(受保护)成员变量或函数与私有成员十分相似,但有一点不同,protected(受保护)成员在派生类(即子类)中是可访问的。 下面的实例中,我们从父类 Box 派生了一个子类 smallBox,在这里 width 成员可被派生类 smallBox 的任何成员函数访问。 1 #inclu 阅读全文
摘要:
#include <iostream> using namespace std; class Box // 创建一个类 { public: double length; // 长度 double breadth; // 宽度 double height; // 高度 // 成员函数声明 double 阅读全文