#include
#include
using namespace std;
class MyArray {
public:
MyArray(int length);
~MyArray();
void Input();
void Display(string);
protected:
int *alist;
int length;
};
MyArray::MyArray(int leng)
{
if (leng <= 0)
{
cout << "error length";
exit(1);
}
length = leng;
alist = new int[length];
if (alist == NULL)
{
cout << "assign failure";
exit(1);
}
cout << "MyArray类对象已创建!" << endl;
}
MyArray::~MyArray()
{
delete[] alist;
cout << "MyArray类对象已撤销!" << endl;
}
void MyArray::Display(string str)
{
int i;
int *p=alist;
cout<
cout<
void MyArray::Input()
{
cout<<"请从键盘输入"<
int *p=alist;
for(i=0;i
}
class SortArray:public MyArray
{
public:
SortArray(int leng);
~SortArray();
void paixu();
};
SortArray::SortArray(int leng)
{
if (leng <= 0)
{
cout << "error length";
exit(1);
}
length = leng;
alist = new int[length];
if (alist == NULL)
{
cout << "assign failure";
exit(1);
}
cout << "SortArray类对象已创建!" << endl;
}
SortArray::~SortArray()
{
delete[] alist;
cout << "SortArray类对象已撤销!" << endl;
}
void SortArray::paixu()
{
int i, t, j;
int *p = alist;
for (i = 0; i < length - 1; i++)
{
for (j = i + 1; j < length; j++)
{
if (alist[i] > alist[j])
{
t = p[i];
p[i] = p[j];
p[j] = t;
}
}
}
for (i = 0; i < length; i++)
cout << p[i] << " ";
}
int main()
{
MyArray a(5);
a.Input();
a.Display("显示已经输入的");
return 0;
}
单继承派生类的声明语法为:
class 派生类名 : 继承方式 基类名
{
派生类新增成员的声明;
}
派生类构造函数名(总参数表):基类构造函数名(参数表)
{
派生类中新增加数据成员初始化语句
}
在建立一个对象时,派生类构造函数先调用基类构造函数;再执行派生类构造函数本身(即派生类构造函数的函数体);在派生类对象释放时,先执行派生类析构函数,再执行其基类析构函数
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)