queue是一种先进先出的数据结构,它有一个出口和一个入口,入口只能进,出口只能出。 queue同样不能遍历。 #include <queue> #include <string> class Person { public: Person(string name, int age) { this->m_Name = name; this->m_Age = age; } stri...