C++蓝桥等考导学/十七级:类和对象/之一:(18)类和对象

一、观看视频

01】类和对象

二、研读学生讲义

【学生讲义】01】类和对象

三、练习题(不清楚回头查看有关视频或讲义)

01】填空:02】关于类和对象的描述,错误的是:
①类是抽象的数据类型,它包含了数据的表示和用于处理数据的方法。
②对象是类的具体实例。
③声明类的对象,和声明基本类型的变量不一样,需要在类名前加class关键字。声明类Box的一个对象box1:class Box box1;声明包含10个类Box对象的数组box2:class Box box2[10]。
④类中的数据和方法(函数)称为类的成员。数据定义了类的对象包括了什么;方法定义了可以在这个对象上执行那些操作。
⑤每个对象都有各自的数据成员。
⑥关键字public确定了类成员的访问属性,public成员在类的外部是可以访问的;也可以指定类的成员为private或protected。
03】类的成员变量,对于类的对象的公共(public)数据成员,可以使用直接成员访问运算符“.”来访问。说一说下面的程序输出是什么,然后运行验证:

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  public:    double length;    double width;};int main(){    Box box;  box.length = 5;  box.width = 6;  cout << box.length * box.width << endl;  return 0;}

04】关于类的成员函数的描述,错误的是:
①类的成员函数是指把定义写在类定义内部的函数,就像类定义中的其他变量一样。
②类成员函数是类的一个成员,类的数据成员都可以使用类成员函数,类成员函数只能访问对象中的数据成员。
05】关于类成员函数的定义,错误的是:
①可以在类定义内部定义成员函数,例如下面的代码:

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

class Box{    public:        double length;        double width;        double getPerimeter()        {            return 2 * (length + width);        }};

②也可以只使用范围解析运算符::,在类定义外部定义成员函数,例如下面的代码:

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

class Box{    public:        double length;        double width;};double Box::getArea(){    return length * width;}

06】调用成员函数:在对象上使用点运算符“.”,这样它就能操作与该对象相关的数据和函数。说一说下面的程序输出,运行验证:

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  public:    double length;    double width;    double getArea();    double getPerimeter(){      return 2 * (length + width);    }};double Box::getArea(){    return length * width;}int main(){    Box box;  box.length = 5;  box.width = 6;  cout << box.getArea() << endl;  cout << box.getPerimeter() << endl;  return 0;}

07】下面代码正确的是:

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  public:    double length;    double width;  private:    void setLength(double length);    void setWidth(double width);    double getLength();    double getWidth();    double getArea();};void Box::setLength(double length){  this->length = length;}void Box::setWidth(double width){  this->width = width;}double Box::getLength(){  return length;}double Box::getArea(){  return length * width;}double Box::getWidth(){  return width;}int main(){  Box box;  box.setLength(6.0);  box.setWidth(7.0);  cout << box.getArea() << endl;  return 0;}

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  private:    double length;    double width;  public:    void setLength(double length);    void setWidth(double width);    double getLength();    double getWidth();    double getArea();};void Box::setLength(double length){  this->length = length;}void Box::setWidth(double width){  this->width = width;}double Box::getLength(){  return length;}double Box::getArea(){  return length * width;}double Box::getWidth(){  return width;}int main(){  Box box;  box.setLength(6.0);  box.setWidth(7.0);  cout << box.getArea() << endl;  return 0;}

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  private:    double length;    double width;  public:    void setLength(double length);    void setWidth(double width);    double getLength();    double getWidth();    double getArea();};void Box::setLength(double length){  this.length = length;}void Box::setWidth(double width){  this.width = width;}double Box::getLength(){  return length;}double Box::getArea(){  return length * width;}double Box::getWidth(){  return width;}int main(){  Box box;  box.setLength(6.0);  box.setWidth(7.0);  cout << box.getArea() << endl;  return 0;}

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{    double length;    double width;    void setLength(double length);    void setWidth(double width);    double getLength();    double getWidth();    double getArea();};void Box::setLength(double length){  this->length = length;}void Box::setWidth(double width){  this->width = width;}double Box::getLength(){  return length;}double Box::getArea(){  return length * width;}double Box::getWidth(){  return width;}int main(){  Box box;  box.setLength(6.0);  box.setWidth(7.0);  cout << box.getArea() << endl;  return 0;}

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{    double length;    double width;  public:    void setLength(double length);    void setWidth(double width);    double getLength();    double getWidth();    double getArea();};void Box::setLength(double length){  this.length = length;}void Box::setWidth(double width){  this.width = width;}double Box::getLength(){  return length;}double Box::getArea(){  return length * width;}double Box::getWidth(){  return width;}int main(){  Box box;  box.setLength(6.0);  box.setWidth(7.0);  cout << box.getArea() << endl;  return 0;}

08】下面代码正确的是:

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  private:    double length;    double width;  public:    double Box();    double Box(double length, double width);    double getArea();};double Box::Box(){  cout << "created 1" << endl;  length = 1;  width = 1;}double Box::Box(double length, double width){  cout << "created 2" << endl;  this->length = length;  this->width = width;  }double Box::getArea(){  return length * width;}int main(){  Box box1;  cout << box1.getArea() << endl;  Box box2(4,5);  cout << box2.getArea() << endl;  return 0;}

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  private:    double length;    double width;  public:    Box();    Box(double length, double width);    double getArea();};Box::Box(){  cout << "created 1" << endl;  length = 1;  width = 1;}Box::Box(double length, double width){  cout << "created 2" << endl;  this->length = length;  this->width = width;  }double Box::getArea(){  return length * width;}int main(){  Box box1;  cout << box1.getArea() << endl;  Box box2(4,5);  cout << box2.getArea() << endl;  return 0;}

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  private:    double length;    double width;  public:    void Box();    void Box(double length, double width);    double getArea();};void Box::Box(){  cout << "created 1" << endl;  length = 1;  width = 1;}void Box::Box(double length, double width){  cout << "created 2" << endl;  this->length = length;  this->width = width;  }double Box::getArea(){  return length * width;}int main(){  Box box1;  cout << box1.getArea() << endl;  Box box2(4,5);  cout << box2.getArea() << endl;  return 0;}

09】下面代码正确的是:

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  private:    double length;    double width;  public:    Box()    {      cout << "created 1" << endl;         length = 1;      width = 1;      }    Box(double length, double width)      {       cout << "created 2" << endl;       this->length = length;       this->width = width;    }  void ~Box();    double getArea();};void Box::~Box(){  cout << "deleted" << length << endl;}double Box::getArea(){  return length * width;}int main(){  Box box1;  cout << box1.getArea() << endl;  Box box2(4,5);  cout << box2.getArea() << endl;  return 0;}

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  private:    double length;    double width;  public:    Box()    {      cout << "created 1" << endl;         length = 1;      width = 1;      }    Box(double length, double width)      {       cout << "created 2" << endl;       this->length = length;       this->width = width;    }  ~Box(int exitNum);    double getArea();};void Box::~Box(int exitNum){  cout << "deleted 2" << length << endl;}double Box::getArea(){  return length * width;}int main(){  Box box1;  cout << box1.getArea() << endl;  Box box2(4,5);  cout << box2.getArea() << endl;  return 0;}

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

· 

#include<iostream>using namespace std;class Box{  private:    double length;    double width;  public:    Box()    {      cout << "created 1" << endl;         length = 1;      width = 1;      }    Box(double length, double width)      {       cout << "created 2" << endl;       this->length = length;       this->width = width;    }  ~Box( );    double getArea();};Box::~Box(){  cout << "deleted " << length << endl;}double Box::getArea(){  return length * width;}int main(){  Box box1;  cout << box1.getArea() << endl;  Box box2(4,5);  cout << box2.getArea() << endl;  return 0;}