C++程序设计实验报告(五十)---第七周任务三

来源:互联网 发布:js计算时间差分钟 编辑:程序博客网 时间:2024/05/17 00:06

/* (程序头部注释开始)
* 程序的版权和版本声明部分
* Copyright (c) 2012, 烟台大学计算机学院学生 
* All rights reserved.
* 文件名称:模板类的复数实现

* 作 者: 刘镇
* 完成日期: 2012 年 3 月 31 日
* 版 本 号: 1.046
* 对任务及求解方法的描述部分
* 输入描述: ......

* 问题描述: 用模板将所要做的类及其函数处理

* 程序输出: 复数

* 程序头部的注释结束
*/

#include <iostream>using namespace std;template<class type>class Complex   {public:    Complex( ){real=0;imag=0;}  Complex(type r, type i){real = r; imag = i;} Complex complex_add(Complex &c2); void display( );   private:type real; type imag; };template<class type>                                     //每次定义都必须写Complex<type> Complex<type>::complex_add(Complex<type> &c2)     //模板类的对象做返回值!{Complex<type> c;c.real = real + c2.real;c.imag = imag + c2.imag;return c;}template<class type>void Complex<type>::display( )   //模板类一定要清楚的写出,而返回值是void{cout << "(" << real << "," << imag << "i)" << endl;}int main( ){Complex<int> c1(3, 4), c2(5, -10), c3;  c3 = c1.complex_add(c2);   cout << "c1+c2="; c3.display( );Complex<double> c4(3.1, 4.4), c5(5.34, -10.21), c6; c6 = c4.complex_add(c5); cout << "c4+c5="; c6.display( ); system("pause");return 0;}


 


运行结果:

 

感言:

 

小看了类模板还真不行,以为还是极其简单的,但实际是做了比任务一和二更多的时间,首先就是对于理解上的肤浅,泛泛的照猫画虎,不理解实质,经过反复体会,才真正明白在类外定义的形式;其次是忘记了template的特殊,即在每次函数定义都应包含。