赞
踩
注意:考试时间 110分钟
祝大家在期末考试取得好成绩,实现自己的目标。
1. C++支持面向对象程序设计的四个要素是( )。
A.抽象性 可读性 继承性 多态性 B.封装性 继承性 多态性 抽象性
C.封装性 继承性 多态性 传递性 D.继承性 多态性 友元性 抽象性
2. 假设已有定义char * const pstr=“option";下面的语句正确的是( )。
A.pstr[3]=’p’; B.pstr=”abcd”;
C.pstr=new char[3]; D.pstr= new char(‘x’);
3 . 函数int FA(int,double)不可与下列哪个函数构成重载。( )
A.int FA(int,int,int); B.double FA(int,int);
C.double FA(double,double); D.double FA(int,double);
4. 下面关于静态成员的描述中,正确的是( )。
A.在建立对象前,就可以为静态数据成员赋值
B.在静态成员函数中可以使用this指针
C.静态数据成员要在构造函数内初始化
D.静态成员函数可以访问本类中的静态数据成员和非静态数据成员
5. 下面有关类的说法错误的是( )。
A.一个类可以有多个构造函数 B.一个类可以有多个析构函数
C.构造函数不能被指定返回值 D.析构函数不能被指定返回值
6. 当使用ifstream流类定义一个流对象,并打开一个磁盘文件时,文件的隐含打开方式为( )。
A.ios::in|ios::out B.ios::out C.ios::in D.ios::binary
7. 在异常处理机制中,将可能发生异常的程序代码放在( )块中。
A.catch B.try C.catch D.error
8. 假定Animal为一个类,则执行“Animal a[3],*pt;”语句时,自动调用该类构造函数的次数为( )。
A.1 B.2 C.3 D.4
9. 类CMax的缺省构造函数原型和析构函数原型是( )。
A.CMax ( )和~CMax ( ) B.CMax (int)和 ~CMax ( )
C.CMax ( )和~CMax (double ) D.int CMax ( )和void ~CMax ( )
10. 如果A类被说明成B类的友元,则( )。
A.A类的成员即是B类的成员
B.B类的成员即是A类的成员
C.A类的成员函数可以访问B类的成员
D.B类的成员函数可以访问A类的成员
1.可以使用关键字 [1] 将类的数据成员声明为静态数据成员。
2.设要把一个文件输出流对象myf与文件“d:\out.txt”相关联,所用的C++语句是: [2] 。
3.在私有继承方式下,基类的公有成员将成为派生类中的 [3] 成员。
4.当使用类的成员函数重载减号运算符时,成员函数的参数表中有 [4] 个参数。
5.创建堆对象需要使用操作符 [5] ,删除堆对象需要使用操作符delete。
6.C++标准库中的异常层次的根类类名为 [6] 。
7.C++语言支持两种多态性,通过使用重载函数可以实现 [7] 时的多态性。
1.在声明类时,private、protected、public可以按任意顺序出现。( )
2.友元的作用之一是实现数据的隐藏性。( )
3.构造函数可以是虚函数。( )
4.抽象类至多含有一个纯虚函数。( )
5.转换函数定义时,不能指定参数和返回值。( )
6.在函数代码多,且不常用的情况下,适宜将该函数定义为内联函数。( )
1.阅读程序写出运行结果。
- #include<iostream >
- #include <string>
- using namespace std;
- class Person
- { public:
- Person(char *na)
- { strcpy(name,na);
- cout<<"构造"<<name<<endl; }
- Person(Person&p)
- { strcpy(name,p.name);
- cout<<"拷贝构造"<<name<<endl; }
- private:
- char name[20];
- };
- void main( )
- { Person wang("wang");
- Person li(wang); }
【运行结果】
2.阅读程序写出运行结果。
- #include<iostream >
- using namespace std;
- int fun(int x,int y)
- { return x+y; }
- int fun(int n=5)
- { int sum=0;
- for(int i=1;i<=n;i++)
- sum=sum+i;
- return sum;
- }
- void main( )
- { cout<<fun( )<<endl;
- cout<<fun(6)<<endl;
- cout<<fun(10,20)<<endl; }
【运行结果】
3.阅读程序写出运行结果
- #include<iostream>
- using namespace std;
- class A
- {public:
- virtual void f1( )
- {cout<<"A::f1"<<endl;}
- void f2( )
- {cout<<"A::f2"<<endl;}
- virtual void f3( )
- {cout<<"A::f3"<<endl;}
- };
- class B:public A
- {public:
- void f1( )
- {cout<<"B::f1"<<endl;}
- void f2(int x)
- {cout<<"B::f2"<<endl;}
- void f3( )
- {cout<<"B::f3"<<endl;}
- };
- void main( )
- { A *ptr;
- B b;
- ptr=&b;
- ptr->f1( );
- ptr->f2( );
- ptr->f3( );
- b.f2(3); }
【运行结果】
1. 定义一个时间类,用来存储时、分、秒信息,类中还有带参数的构造函数和显示时间的成员函数,并且定义主函数测试设计的类。
2. 定义一个分数类Fraction,其数据成员包含int类型的分子和分母,其函数成员包括构造函数和输出函数。请分别采用友元函数重载运算符+和*,实现分数的加法运算和乘法运算,并定义主函数main( )对这些运算符进行测试。
3. 定义一个学生基类Student,属性有学号、姓名、年龄,再由Student类派生出研究生类Postgraduate,研究生类中增加指导老师。要求两个类中均有构造函数和输出函数,并编程测试设计的类。
一、单项选择题 (每小题 2分,共 20分)
题号 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
答案 | B | A | D | A | B | C | B | C | A | C |
二、填空题(每空2分,共 14分)
[1] static [2] myf.open(“d:\\out.txt”) [3] private(或私有)
[4] 1 [5] new [6] exception [7] 编译
三、判断题(每小题 1分,共 6分)
1( √) 2( × ) 3( × ) 4( × ) 5( √ ) 6( × )
四、阅读题(每小题 5分,共 15分)
1.【运行结果】
构造wang (3分)
拷贝构造wang (2分)
2.【运行结果】
15 (1分)
21 (2分)
30 (2分)
3. 【运行结果】
B::f1 (1分)
A::f2 (1分)
B::f3 (1分)
B::f2 (2分)
五、编程题(每小题 15分,共 45分)
1.
- #include<iostream >
-
- using namespace std;
-
- class Time
-
- {int hour,minute,second;
-
- public:
-
- Time(int a=0,int b=0,int c=0)
-
- {hour=a;minute=b;second=c;}
-
- void Show()
-
- {cout<<hour<<":"<<minute<<":"<<second<<endl;}
-
- };
-
- void main( )
-
- {Time t(11,12,30);
-
- t.Show ();
-
- }
评分:类定义和数据成员(4分)、构造函数(4分)、显示函数(3分)、main函数测试代码(4分)。
2.
- #include "stdafx.h"
-
- #include <iostream.h>
-
- class Fraction
-
- { int nume, deno; //分子,分母
-
- public:
-
- Fraction(int n=0, int d=1){ nume = n; deno = d; }
-
- void Show()
-
- {cout<<nume<<"/"<<deno<<" ";}
-
- friend Fraction operator +(Fraction f1, Fraction f2);
-
- friend Fraction operator *(Fraction f1, Fraction f2);
-
- };
-
- Fraction operator +(Fraction f1, Fraction f2)
-
- { return Fraction(f1.nume*f2.deno + f2.nume*f1.deno, f1.deno*f2.deno); }
-
- Fraction operator *(Fraction f1, Fraction f2)
-
- { return Fraction(f1.nume*f2.nume, f1.deno*f2.deno); }
-
- void main()
-
- { Fraction d1(2, 5), d2(1, 6), d3;
-
- d3 = d1 + d2;
-
- d3.Show();
-
- d3 = d1 * d2;
-
- d3.Show(); }
评分:类定义(4分),构造函数、显示函数、运算符+重载函数、运算符*重载函数(各2分),main函数测试代码(3分)。
3.
- #include"stdafx.h"
-
- #include"iostream"
-
- #include"string"
-
- using namespace std;
-
- class Student
-
- {int id;
-
- string name;
-
- int age;
-
- public:
-
- Student(int i,string n,int a)
-
- { id=i;name=n;age=a;}
-
- void show()
-
- {cout<<id<<","<<name<<","<<age<<endl;}
-
- };
-
- class Postgraduate:public Student
-
- {string teacher;
-
- public:
-
- Postgraduate(int i,string n,int a,string t):Student(i,n,a)
-
- { teacher=t;}
-
- void show()
-
- {Student::show();cout<<"指导老师"<<teacher<<endl;}
-
- };
-
- void main()
-
- {
-
- Student s(1001,"李明",20);
-
- s.show ();
-
- Postgraduate p(1002,"王琳",20,"Jack");
-
- p.show ();
-
- }
评分:Student类(5分)、Postgraduator类(5分)main函数测试代码(5分)。
1. 下列叙述不正确的是( )。
A. 转换函数不能指定参数 B. 一个类可以有多个转换函数
C. 转换函数不能指定访问权限 D. 转换函数不能指定返回值
2. 函数double FB(double, int )不可与下列哪个函数构成重载。( )
A.int FB (int ); B.double FB (double);
C.int FB (double,int); D.double FB (int,double);
3. 假设已有定义const char * pstr=“examples";下面的语句错误的是( )。
A. pstr[3]=’p’; B. pstr=”wen”;
C. pstr=new char[5]; D. pstr= new char(‘p’);
4. 对文件进行读写操作,要使用编译预处理命令包含头文件( )。
A. fstream.h B. ifstream.h C. ofstream.h D. iostream.h
5. 在异常处理机制中,可使用( )语句抛出异常。
A. try B. catch C. throw D. error
6. 假定Cat为一个类,则执行“Cat a[2],b;”语句时,自动调用该类构造函数的次数为( )。
A. 2 B. 3 C. 4 D. 5
7. 下面关于静态成员的描述中,正确的是( )。
A. 静态成员函数只能在类外定义。
B. 静态数据成员是本类的所有对象所共有的。
C. 静态成员函数在类外定义时,要用static前缀。
D. 静态数据成员不能通过类的对象调用
8. 下面有关类的说法错误的是( )。
A. 析构函数不能被指定参数 B. 在一个类中可以说明具有类类型的数据成员
C. 构造函数可以有默认参数 D. 类中析构函数可以定义多个
9. 下面有关抽象类的说法正确的是( )。
A. 抽象类至少包含一个纯虚函数 B. 可以创建抽象类的类对象
C. 不能定义指向抽象类对象的指针 D. 抽象类不能包含多个虚函数
10. 已知类A是类B的友元,类B是类C的友元,则( )。
A. 类A一定是类C的友元
B. 类C一定是类A的友元
C. 类C的成员函数可以访问类B的对象的任何成员
D. 类A的成员函数可以访问类B的对象的任何成员
1.C++语言支持两种多态性,通过使用继承和虚函数,可以实现 [1] 时的多态性。
2.若要将Score 类声明为Student类的友元,应在Student类中添加代码 “ [2] class Score”。
3.模板分为函数模板和 [3] 模板。
4.创建堆对象需要使用操作符new,删除堆对象需要使用操作符 [4] 。
5.当使用类的友元函数重载运算符+时,友元函数的参数表中有 [5] 个参数。
6.设要把一个输入文件流对象ifile与文件“E:\A.txt”相关联,所用的C++语句是: [6] 。
7.在私有继承方式下,基类的保护成员将成为派生类中的 [7] 成员。
1.没有用private、protected、public定义的数据成员是公有成员。( )
2.友元的作用之一是加强类的封装性。( )
3.析构函数可以是虚函数。( )
4.一般将含有循环语句的函数定义为内联函数。( )
5.可以让指向基类的指针指向公有派生类对象。( )
6.C++语言允许在重载运算符时改变运算符的操作数个数。( )
1.阅读程序写出运行结果。
- #include<iostream >
- using namespace std;
- int add(int x=0,int y=0,int z=0)
- { int sum;
- sum=x+y+z;
- return sum;
- }
- void main( )
- { int a=10,b=20,c=30;
- cout<<add( )<<endl;
- cout<<add(a)<<endl;
- cout<<add(a,b)<<endl;
- cout<<add(a,b,c)<<endl;
- }
【运行结果】
2.阅读程序写出运行结果
- #include<iostream >
- using namespace std;
- class Parent
- { public:
- Parent()
- { cout << "Parent" << endl; }
- ~Parent()
- { cout << "~Parent" << endl; }
- };
- class Child :public Parent
- {
- public:
- Child( )
- { cout << "Child" << endl; }
- ~Child( )
- { cout << "~Child" << endl; }
- };
- void main( )
- { Child obj1;
- }
【运行结果】
3.阅读程序写出运行结果
- #include<iostream >
- using namespace std;
- class base
- {
- public:
- virtual void f1( )
- {cout<<"base::f1"<<endl;}
- virtual void f2( )
- {cout<<"base::f2"<<endl;}
- void f3( )
- {cout<<"base::f3"<<endl;}
-
- };
- class derive:public base
- {public:
- void f1( )
- {cout<<"derive::f1"<<endl;}
- void f2(int x)
- {cout<<"derive::f2"<<endl;}
- void f3( )
- {cout<<"derive::f3"<<endl;}
- };
- void main()
- {
- base *ptr;
- derive obj;
- ptr=&obj;
- ptr->f1( );
- ptr->f2( );
- ptr->f3( );
- obj.f2(5);
- }
【运行结果】
1.定义一个日期类,用来存储年、月、日信息,类中还有带参数的构造函数和显示日期的成员函数,并且编写主函数测试设计的类。
2.定义一个分数类Fraction,其数据成员包含int类型的分子和分母;其函数成员有构造函数、输出函数和运算符重载函数。分别重载运算符-和*,实现分数的减法运算和乘法运算,并定义主函数main()对这些运算符进行测试。
3.定义一个汽车类vehicle,属性有载重、车轮数,再由vehicle类派生出轿车类car,car类中增加载客数。要求两个类中均有构造函数和输出函数,并编程测试设计的类。
一、单项选择题 (每小题 2分,共 20分)
题号 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
答案 | C | C | A | A | C | B | B | D | A | D |
二、填空题(每空2分,共 14分)
[1] 运行 [2] friend [3] 类 [4] delete
[5] 2 [6] ifile.open(“E:\\A.txt”) [7] 私有(或private)
三、判断题(每小题 1分,共 6分)
1( × ) 2(× ) 3( √ ) 4( × ) 5( √ ) 6( × )
四、阅读题(每小题 5分,共 15分)
1.【运行结果】
0 (2分)
10 (1分)
30 (1分)
60 (1分)
2.【运行结果】
Parent (2分)
Child (1分)
~Child (1分)
~Parent (1分)
3.【运行结果】
derive::f1 (1分)
base::f2 (1分)
base::f3 (1分)
derive::f2 (2分)
五、编程题(每小题 15分,共 45分)
1.
- #include<iostream >
-
- using namespace std;
-
- class Date
-
- {int year,month,minute;
-
- public:
-
- Date(int a=0,int b=0,int c=0)
-
- {year=a;month=b;minute=c;}
-
- void Show()
-
- {cout<<year<<"/"<<month<<"/"<<minute<<endl;}
-
- };
-
- void main( )
-
- {Date t(2020,12,3);
-
- t.Show ();}
评分:类定义和数据成员(4分)、构造函数(4分)、显示函数(3分)、main函数测试代码(4分)。
2.
- #include "stdafx.h"
-
- #include <iostream.h>
-
- class Fraction
-
- { int nume, deno; //分子,分母
-
- public:
-
- Fraction(int n=0, int d=1){ nume = n; deno = d; }
-
- void Show()
-
- {cout<<nume<<"/"<<deno<<" ";}
-
- Fraction operator -( Fraction f);
-
- Fraction operator *( Fraction f);
-
- };
-
- Fraction Fraction::operator -( Fraction f)
-
- { return Fraction(nume*f.deno-f.nume*deno, deno*f.deno); }
-
- Fraction Fraction::operator *( Fraction f)
-
- { return Fraction(nume*f.nume, deno*f.deno); }
-
- void main()
-
- { Fraction d1(2, 5), d2(1, 6), d3;
-
- d3 = d1 - d2;
-
- d3.Show();
-
- d3 = d1 * d2;
-
- d3.Show();
-
- }
评分:类定义(4分),构造函数、显示函数、运算符-重载函数、运算符*重载函数(各2分),main函数测试代码(3分)。
3.
- class vehicle
-
- {
-
- private:
-
- float weight;
-
- int wheels;
-
- public:
-
- vehicle(int in_wheels,float in_weight)
-
- {wheels=in_wheels;weight=in_weight;}
-
- void show()
-
- {cout<<"载重"<<weight<<" 车轮数"<<wheels<<endl;}
-
- };
-
-
-
- class car:public vehicle // 派生类car类的定义
-
- {
-
- private:
-
- int passenger_load;
-
- public:
-
- car(int in_wheel,float in_weight,int people=5):vehicle(in_wheel,in_weight)
-
- {passenger_load=people;}
-
- int get_passengers(){return passenger_load;}
-
- void show()
-
- {vehicle::show ();cout<<"载客数"<<passenger_load<<endl;}
-
- };
-
-
-
- void main()
-
- { vehicle v1(4,4000);
-
- v1.show();
-
- car bm(4,5000,8);
-
- bm.show ();
-
- }
评分:vehicle类(5分)、 car类(5分)、main函数测试代码(5分)。
1.在( )情况下适宜采用inline定义内联函数。
A.函数体含有while语句 B.函数体含有递归语句
C.函数代码多,且不常调用 D.函数代码少,且频繁调用
2.已知函数Fun的原型为int Fun (int ,int),下列不构成重载的函数的是( )。
A.char Fun (int,int); B.double Fun (int,int,double);
C.int Fun (int); D.float Fun (int,int,int);
3.下面关于静态成员的描述中,错误的是( )。
A.静态数据成员是类的所有对象所共有的
B.静态数据成员不能在构造函数内初始化
C.静态数据成员可以通过类的对象调用
D.静态成员函数可以访问本类中的所有数据成员。
4.当使用ofstream流类定义一个流对象,并打开一个磁盘文件时,文件的隐含打开方式为( )A.ios::in B.ios::out C.ios::in|ios::out D.ios::binary
5.假定Dog为一个类,则执行“Dog a[3];”语句时,调用该类构造函数的次数为( )。
A.0 B.1 C.2 D.3
6.既要禁止修改指针p本身,又要禁止修改p所指向的数据,这样的指针应定义为( )。
A.char *p=“OK”; B.const char * const p=“OK”;
C.const char *p=“OK”; D.char * const p=“OK”;
7。在异常处理机制中,( )语句用于捕获异常,进行异常处理。
A.try B.catch C.throw D.error
8.只能使用成员函数重载的运算符为( )。
A. + B. / C. [ ] D.*
9.如果没有为一个类定义任何构造函数的情况下,下列描述正确的是( )。
A.编译器自动创建一个不带参数的构造函数
B.这个类不需要构造函数
C.创建类对象时不调用构造函数
D.该类不能通过编译
10.有关运算符重载错误的描述是( )。
A.C++语言不允许在重载运算符时改变运算符的操作数个数
B.C++语言不允许在重载运算符时改变运算符的原来的功能
C.C++语言不允许在重载运算符时改变运算符的结合性
D.C++语言不允许在重载运算符时改变运算符的优先级
1.对使用关键字 [1] 所开辟的动态存储空间,释放时必须使用关键字 [2] 。
2.若CShape为类名,则语句“CShape (CShape&);”,为该类的 [3] 构造函数的原型说明。
3.C++支持面向对象程序设计的四个要素是: [4] 、抽象性、继承性和多态性 。
4.对文件进行读写操作,要使用编译预处理命令包含的头文件为 [5] 。
5.在保护继承方式下,基类的公有成员将成为派生类中的 [6] 成员。
6.当使用类的友元函数重载单目运算符时,友元函数的参数表中有 [7] 个参数。
1.在声明类时,应按private、protected、public的顺序定义类中成员。( )
2.友元的作用之一是提高程序的执行效率。( )
3.类的析构函数的作用是对象的初始化。( )
4.已知类A是类B的友元,类B是类C的友元,则类A一定是类C的友元。( )
5.一个类中不可以定义多个转换函数。( )
6.C++标准库中的异常层次的根类为exception类。( )
1.阅读程序写出运行结果。
- #include<iostream >
- #include <string>
- using namespace std;
- class Person
- { public:
- Person(Person &a)
- { strcpy(name,a.name);
- cout<<"copy construct "<<name<<endl; }
- Person(char *na)
- { strcpy(name,na);
- cout<<"construct "<<name<<endl;
- }
- private:
- char name[20];
- };
- void main ()
- { Person *p=new Person("Tom");
- Person li(*p);
- delete p;
- }
【运行结果】
2.阅读程序写出运行结果
- #include<iostream >
- using namespace std;
- void swap(int &x,int &y);
- void main()
- { int x=33, y=55;
- cout <<"before swap, x=" <<x <<" ,y=" <<y <<endl;
- swap(x,y);
- cout<<"after swap,x="<<x<<" ,y="<<y;
- }
- void swap(int &rx,int &ry)
- { int temp=rx;
- rx=ry;
- ry=temp;
- }
【运行结果】
3.阅读程序写出运行结果
- #include<iostream >
- using namespace std;
- class A
- {
- public:
- virtual void f1( )
- {cout<<"A::f1"<<endl;}
- void f2( )
- {cout<<"A::f2"<<endl;}
- };
- class B:public A
- {public:
- void f1( )
- {cout<<"B::f1"<<endl;}
- void f2( )
- {cout<<"B::f2"<<endl;}
- };
- void main( )
- { A a,*ptr;
- B b;
- ptr=&a;
- ptr->f1( );
- ptr->f2( );
- ptr=&b;
- ptr->f1( );
- ptr->f2( );
- }
【运行结果】
1.定义一个学生类Student,用来存储学号、姓名、性别信息,类中还有带参数的构造函数和显示学生信息的成员函数,并且编写主函数测试设计的类。
2.定义一个图形基类Shape,在类中声明一个虚函数,用来求周长。在Shape类基础上派生出三角形类Triangle和圆类Circle,求它们各自的周长,并且编写主函数测试设计的类。
3.定义一个分数类Fraction,其数据成员包含int类型的分子和分母。请使用成员函数重载运算符+,实现分数的加法运算;使用友元函数重载运算符-,实现分数的减法运算,并定义主函数main()对这些运算符进行测试。
一、单项选择题 (每小题 2分,共 20分)
题号 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
答案 | D | A | D | B | D | B | B | C | A | B |
二、填空题(每空2分,共 14分)
[1] new [2] delete [3] 拷贝 [4] 封装性
[5] fstream.h [6] 保护 [7] 1
三、判断题(每小题 1分,共 6分)
1( × ) 2( √ ) 3(× ) 4(× ) 5(× ) 6(√ )
四、阅读题(每小题 5分,共 15分)
1.【运行结果】
construct Tom (3分)
copy construct Tom (2分)
2.【运行结果】
before swap, x=33 ,y=55 (3分)
after swap,x=55,y=33 (2分)
3.【运行结果】
A::f1 (2分)
A::f2 (1分)
B::f1 (1分)
A::f2 (1分)
五、编程题(每小题 15分,共 45分)
1.
- #include"stdafx.h"
-
- #include"iostream"
-
- #include"string"
-
- using namespace std;
-
- class Student
-
- {int id;
-
- string name;
-
- char sex;
-
- public:
-
- Student(int i,string n,char c)
-
- { id=i;name=n;sex=c;}
-
- void show()
-
- {cout<<id<<","<<name<<","<<sex<<endl;}
-
- };
-
- void main()
-
- {Student s(1001,"李明",'f');
-
- s.show ();
-
- }
评分:类定义和数据成员(4分)、构造函数(4分)、显示函数(3分)、main函数测试代码(4分)。
2.
- #include <iostream>
-
- using namespace std;
-
- class shape {
-
- public:
-
- virtual double circumference() = 0; //或空函数{ }
-
- };
-
- class triangle : public shape {
-
- double a, b,c;
-
- public:
-
- triangle(double x, double y, double z){ a=x;b=y;c=z; }
-
- double circumference(){ return (a+b+c); }
-
- };
-
- class circle : public shape {
-
- double r;
-
- public:
-
- circle(double radius){ r = radius; }
-
- double circumference(){ return 3.1415926 * r * 2; }
-
- };
-
- void main()
-
- {
-
- shape *p[2];
-
- p[0] = new triangle(3.0,4,5.0);
-
- p[1] = new circle(10.0);
-
- for (int i = 0; i < 2; i++)
-
- { cout << i << " " << p[i]->circumference() << endl;
-
- delete p[i];
-
- }
-
- }
评分:shape等三个类的定义及实现(各4分)、main函数测试代码(3分)。
3.
- #include "stdafx.h"
-
- #include <iostream.h>
-
- class Fraction
-
- { int nume, deno; //分子,分母
-
- public:
-
- Fraction(int n=0, int d=1){ nume = n; deno = d; }
-
- void Show()
-
- {cout<<nume<<"/"<<deno<<" ";}
-
- Fraction operator +(Fraction f);
-
- friend Fraction operator -(Fraction f1, Fraction f2);
-
- };
-
- Fraction Fraction::operator +(Fraction f)
-
- { return Fraction(nume*f.deno + f.nume*deno, deno*f.deno); }
-
- Fraction operator -(Fraction f1, Fraction f2)
-
- { return Fraction(f1.nume*f2.deno-f2.nume*f1.deno, f1.deno*f2.deno); }
-
- void main()
-
- {
-
- Fraction d1(2, 5), d2(1, 6), d3;
-
- d3 = d1 + d2;
-
- d3.Show();
-
- d3 = d1 - d2;
-
- d3.Show();
-
- }
评分:类定义(5分),两个运算符重载函数(各3分),main函数测试代码(4分)。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。