1//类模板中成员函数创建时机2//类模板中成员函数和普通类中成员函数创建时机是有区别的:3//1.普通类中的成员函数一开始就可以创建4//2.类模板中的成员函数在调用时才创建567#include <iostream>8#include <string>9#include<fstream>10usingnamespacestd;1112classPerson113{14public:15voidshowPerson1()16{17...