c++ (模板 && 类模板)
xxx.hpp
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
//#include "Person.h"
#include "Person.hpp"
using namespace std;
//建议模板不要份文件编写,写到一个类中即可,类内进行声明和实现,最后把类名改为.hpp
int main()
{
Person<string, int> p("虚竹", 10);
p.showPerson();
return 0;
}
xxx.cpp
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
//#include "Person.h"
#include "Person.hpp"
using namespace std;
//建议模板不要份文件编写,写到一个类中即可,类内进行声明和实现,最后把类名改为.hpp
int main()
{
Person<string, int> p("虚竹", 10);
p.showPerson();
return 0;
}