请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2。其中有向量基类VeetorBase、向量类Vector和零向量类ZeroVector的定义。请在横线处填写适当的代码并删除横线,以实现上述类定义。该程序正确输出结果应为: (

admin2018-03-13  18

问题 请使用VC6或使用【答题】菜单打开考生文件夹proj2下的工程proj2。其中有向量基类VeetorBase、向量类Vector和零向量类ZeroVector的定义。请在横线处填写适当的代码并删除横线,以实现上述类定义。该程序正确输出结果应为:
    (1,2,3,4,5)
    (0,0,0,0,0,0)
    注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。
#include
using namespace std;
class VectorBase{//向量基类,一个抽象类
  int len;
public:
    VectorBase  (int len):len(len){)
  int length()const{return len;)
//向量长度,即向量中元素的个数
  virtual double getElement(int i)const=0;//取第i个元素的值
virtual double sum()const=0;//求所有元素的和
  void show()const{//显示向量中所有元素
    cout<<"(";
    for(int i=0;i    cout<    //********found********
    cout<<________<<")"
<    }
};
class Vector:public VectorBase{
//向量类
  double*val;
public:
  Vector(int len,double v[]=NULL):VectorBase(len){
  val=new double[len];
  for(int i=0;i  val=(v==NULL?0.0:v  );
    }
//****found****
~Vector(){_________;}
double getElement(int index)
const{return val[index];)
  double sum()const{
  double s=0.0;
//****found****
    for(int i=0;i    return s;
    }
};
class ZeroVector:public VectorBase{//零向量类
public:
  ZeroVector(int len):Vector-Base(1en){}
    //***********found***********
    double getE lement(int index)
const{__________;)
  double sum()const{return 0.0;
  }
  };
  int main(){
  VectorBase*v;
  double d[]={1,2,3,4,5);
  v=new Vector(5,d);
  v->show();
  delete V;
  v=new ZeroVector(6);
  v->show();
  delete v;
  return 0;
  }

选项

答案(1)getElement(length()-1) (2)delete[]val (3)s+=val[i] (4)return 0.0:

解析 (1)主要考查考生对成员函数的掌握,题目要求显示最后一个元素。前面有纯虚函数virtual doublegetElement(int i)const=0,因此可以直接调用getElement函数来取得最后一个元素,注意最后一个元素位置是Length()-1而不是Length()。
    (2)主要考查考生对析构函数的掌握,前面定义了类的私有成员*val,因此析构函数要释放val,使用de1ete语句完成。
    (3)主要考查考生对for循环的掌握,由函数名double sum()const可知,该函数要求元素之和,for循环语句的作用是遍历整个数组,在此使用语句s+=val完成程序。
    (4)主要考查考生对成员函数的掌握,由该类的注释:零向量类,可以了解到该类的元素都为零,因此无论要取第几个元素都返回0,由于数据类型为double,所以为return0.0。
转载请注明原文地址:https://kaotiyun.com/show/nVAp777K
0

最新回复(0)