码迷,mamicode.com
首页 >  
搜索关键字:自考    ( 238个结果
自考新教材-p271_1
源程序: #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
自考新教材-p238_1
源程序: #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
自考新教材-p240_2
源程序: #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
自考新教材-p243_5_(1)
源程序: #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
自考新教材-p222
源程序: //封闭类的构造函数#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
自考新教材-p216
源程序: #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
自考新教材-p217
源程序: #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
自考新教材-p181
源程序: #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
自考新教材-p180
源程序: //基类与子类占用空间及字节对齐#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
自考新教材-p156
源程序: #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
238条   上一页 1 2 3 4 5 6 ... 24 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!