c++ (模板 && 类模板)

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;
}
上一篇:mysql06-解释计划


下一篇:获取当前div中的文本(只获取当前div的, 子元素不要, 基于layui)