上机作业.

上机作业.,第1张

上机作业.

#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<    for(i=0;i         cout<<*p<<"";
   cout< }
void MyArray::Input()
{
    cout<<"请从键盘输入"<     int i;
    int *p=alist;
    for(i=0;i        cin>>*p;
}
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 派生类名 : 继承方式 基类名

{

派生类新增成员的声明;

}

派生类构造函数的一般形式为:

派生类构造函数名(总参数表):基类构造函数名(参数表)

{

   派生类中新增加数据成员初始化语句

}

在建立一个对象时,派生类构造函数先调用基类构造函数;再执行派生类构造函数本身(即派生类构造函数的函数体);在派生类对象释放时,先执行派生类析构函数,再执行其基类析构函数

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5658685.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存