源程序: #include <iostream>using namespace std; class A{public: int i; virtual void func() { cout << "A0" << endl; } virtual void func2() { cout << "A1" ...
分类:
其他好文 时间:
2020-02-04 22:10:15
阅读次数:
77
源程序: #include <iostream>using namespace std; class CBase{protected: int n;public: CBase(int i) :n(i) {} void Print() { cout << "CBase:n=" << n << endl ...
分类:
其他好文 时间:
2020-02-04 21:58:22
阅读次数:
69
源程序: #include <iostream>using namespace std; class Base{private: int radius, width;public: Base() { cout << "Base默认构造函数" << endl; } Base(int r, int w) ...
分类:
其他好文 时间:
2020-02-04 20:49:19
阅读次数:
61
源程序: #include <iostream>using namespace std; class vehicle{public: int wheels; float weight;public: vehicle(int wheels1, float weight1) { wheels = whe ...
分类:
其他好文 时间:
2020-02-04 20:10:34
阅读次数:
60
源程序: //封闭类的构造函数#include<iostream>#include<string>using namespace std; class myDate{public: myDate(); myDate(int); myDate(int, int); myDate(int, int, i ...
分类:
其他好文 时间:
2020-02-04 18:52:43
阅读次数:
73
源程序: #include<iostream>using namespace std; class CBase{public: CBase() {} CBase(CBase &c) { cout << "CBase::复制构造函数" << endl; } CBase & operator=(cons ...
分类:
其他好文 时间:
2020-02-04 18:44:53
阅读次数:
78
源程序: #include<iostream>using namespace std; class BaseClass1{protected: int v1, v2;public: BaseClass1(); BaseClass1(int, int); ~BaseClass1(); void Set ...
分类:
其他好文 时间:
2020-02-04 18:37:40
阅读次数:
70
源程序: #include<iostream>using namespace std; class another;class Base{private: float x;public: void print(const another &K);};class Derived:public Base ...
分类:
其他好文 时间:
2020-02-04 15:43:59
阅读次数:
79
源程序: //基类与子类占用空间及字节对齐#include<iostream>using namespace std; class BaseClass{ int v1,v2; char v4;public: int temp1(){}}; class DerivedClass:public Base ...
分类:
其他好文 时间:
2020-02-04 15:30:30
阅读次数:
69
源程序: #include <iostream>#include<string>using namespace std; class myComplex{private: double real, imag;public: myComplex(); myComplex(double r, doubl ...
分类:
其他好文 时间:
2020-02-04 14:11:12
阅读次数:
68