博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
008.C++类改写模板类
阅读量:5308 次
发布时间:2019-06-14

本文共 805 字,大约阅读时间需要 2 分钟。

1.普通类

//class headclass complex//class body {}{public:    complex(double r=0, double i)        :re(r), im(i)    {}//构造函数    complex& operator += (const complex&);    double real() const { return re; }//获取实部的函数    double imag() const { return im; }//获取虚部的函数private:    double re, im;    friend complex& __doapl(complex*, const complex&);};

2.模板类

//导入模板template
class complex{public: complex(T r = 0, T i = 0) :re(r), im(i) {} complex& operator += (const complex&); T real() const { return re; } T imag() const { return im; }private: T re, im; friend complex& __doapl(complex*, const complex&);};//调用时需要制定类型<>//{// complex
c1(2.5, 1.5);// complex
c2(2, 6);//}

 

转载于:https://www.cnblogs.com/paulprayer/p/10118745.html

你可能感兴趣的文章
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
Attribute(特性)与AOP
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
Competing Consumers Pattern (竞争消费者模式)
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
web前端之路,js的一些好书(摘自聂微东 )
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
解决升级系统导致的 curl: (48) An unknown option was passed in to libcurl
查看>>
Java Session 介绍;
查看>>