摘要: 1. 主版本模板类 首先我们来看一段初学者都能看懂,应用了模板的程序: 1 #include <iostream> 2 using namespace std; 3 4 template<class T1, class T2> 5 class A{ 6 public: 7 void function(T1 value1, T2 value2){ 8 cout<<"value1 = "<<value1<<endl; 9 cout<<"value2 = "<<value2&l 阅读全文
posted @ 2012-10-18 00:04 邵贤军 阅读(5281) 评论(6) 推荐(2) 编辑