首页 > 代码库 > C++学习笔记35 方法模版
C++学习笔记35 方法模版
C++允许模版化类中的单个方法,这些方法可以在一个类模版中,也可以在一个非模版化的类中。
在编写一个模版化的类方法时,实际上是为不同类型编写不同版本的方法,在类模版中,方法模版对赋值运算符和复制构造函数非常有用。
要注意的是,不能用方法模版编写虚方法和析构函数。
1.一个普通类中的方法模版例子:
#include <iostream> using namespace std; class man{ private: string name; public: man(const string &m):name(m){ } template <class T> void show(T t){ cout<<"This is "<<t<<" vesion:"<<name<<endl; } }; int main() { man m("guang"); m.show(100); m.show("string"); m.show(0.999); }运行结果:
2.一个模版类中的方法模版例子
其实两者的差别并不大。
#include <iostream> #include <string> using namespace std; template<class T> class man{ private: string name; T data; public: man(const string &m,T d):name(m),data(d){ } template <class TT> void show(TT t){ cout<<"This is "<<t<<" vesion:"<<endl; cout<<"name="<<name<<" ,data=http://www.mamicode.com/"<运行截图:
3.如果同时存在同名的函数,方法模版不会替换同名非模版方法。非模版方法是优先于模版方法的,相当于模版方法在该实例会被覆盖,这个会在下两篇中详细介绍。
例子:
#include <iostream> #include <string> using namespace std; template<class T> class man{ private: string name; T data; public: man(const string &m,T d):name(m),data(d){ } <span style="color:#ff0000;">void show(int i)const{ cout<<"这里是非模版方法!!"<<endl; cout<<"name="<<name<<" ,data=http://www.mamicode.com/"<
运行截图:
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。