1 Star 0 Fork 1

llongger/Code_C++

forked from GodOuO/Code_C++ 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
69.queue_ALL.cpp 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
GodOuO 提交于 2023-03-15 04:08 . Train
#include<iostream>
#include<string>
#include<queue>
using namespace std;
class Person
{
private:
string m_Name;
int m_Age;
public:
Person(string name,int age);
string getName();
int getAge();
};
Person::Person(string name,int age)
{
this->m_Name = name;
this->m_Age = age;
}
string Person::getName(){
return m_Name;
}
int Person::getAge(){
return m_Age;
}
//queue 队列
void test01(){
queue<Person> q;
Person p1("GodOuO",23);
Person p2("Wendy",23);
Person p3("MonkeySun",999);
Person p4("MonkTang",9999);
q.push(p1);
q.push(p2);
q.push(p3);
q.push(p4);
cout<<"Queue's Size : "<<q.size()<<endl;
while (!q.empty())
{
cout<<"Queue's Top Name : "<<q.front().getName()
<<"\tTop Age : "<<q.front().getAge()<<endl;
cout<<"Queue's Back Name : "<<q.back().getName()
<<"\tBack Age : "<<q.back().getAge()<<endl;
q.pop();
}
cout<<"PopQueue's Size : "<<q.size()<<endl;
}
int main(){
test01();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/llongger/codeCpp.git
[email protected]:llongger/codeCpp.git
llongger
codeCpp
Code_C++
master

搜索帮助