//第二十三模板 13模板成员//模板可作为类,结构甚至模板类的成员/*#includeusing namespace std;template class One{public: //不知道这里的i是什么意思 //One(T1 t, int i):first(t),second(t){} One(T1 t, int i):first(t),second(i){} template T2 get(T2 t2, T1 t1){ cout<<"second.get()返回"< < class two{ public: two(T3 t3=0):x(t3){} void show()const{cout< < first; //用模板类声明了两个对first和second two second; //由于这两个对像和模板类two以及模板类型T3都是在One类的私有区域被声明,因此只有One类的公有函数可以访问,外部不能访问};int main(){ One one(3.5,4); one.show(); cout<