# include<iostream>
# include<vector>
# include<algorithm>
# include<string>
using namespace std;

//Vector存放自定义数据类型
class Person
{
public:
	Person(string name, int age)
	{
		this->m_Name = name;
		this->m_Age=age;
	}
	string m_Name;
	int m_Age;
};
void myPrint(Person& it)
{
	cout << "姓名为:" << it.m_Name << "年龄为:" << it.m_Age << endl;
}
void test()
{
	vector<Person>v;
	Person p1("aaa", 10);
	Person p2("bbb", 20);
	Person p3("ccc", 30);
	Person p4("ddd", 40);
	Person p5("eee", 50);
	v.push_back(p1);
	v.push_back(p2);
	v.push_back(p3);
	v.push_back(p4);
	v.push_back(p5);

	/