首先自定義一個類:
目前創(chuàng)新互聯(lián)已為1000+的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、網(wǎng)站托管、服務(wù)器租用、企業(yè)網(wǎng)站設(shè)計、孟村網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。TestManager.h
#pragma once
#includeusing namespace std;
class TestManager
{
public:
TestManager();
~TestManager();
int Age=22;
std::string Name="張三";
float Weights=12.45;
private:
};
TestManager.cpp
#include "TestManager.h"
TestManager::TestManager()
{
}
TestManager::~TestManager()
{
}
然后隊列封裝一個類便于操作:
QueueManager.h
#pragma once
#include//c++標(biāo)準(zhǔn)頭文件,可以使用cout,cin等標(biāo)準(zhǔn)庫函數(shù)
#include//使用queue時需要的頭文件
#include "TestManager.h"
class QueueManager
{
public:
QueueManager();
~QueueManager();
void Add(TestManager tm);//往隊列里面添加元素
TestManager Get();//取出隊列首個元素
int Size();//返回隊列當(dāng)前元素個數(shù)
int MaxSize = 10;//隊列大保留元素個數(shù)
private:
queuedataqueue;//隊列
};
QueueManager.cpp
#include "QueueManager.h"
QueueManager::QueueManager()
{
}
QueueManager::~QueueManager()
{
}
void QueueManager::Add(TestManager tm)
{
if (dataqueue.size() >=MaxSize)
{
dataqueue.pop();
}
dataqueue.push(tm);
}
TestManager QueueManager::Get()
{
if (dataqueue.empty())
{
TestManager temp;
return temp;//返回默認的對象
}
else
{
return dataqueue.front();
}
}
int QueueManager::Size()
{
return dataqueue.size();
}
使用:
main.cpp
#include//c++標(biāo)準(zhǔn)頭文件,可以使用cout,cin等標(biāo)準(zhǔn)庫函數(shù)
#include "QueueManager.h"
using namespace std;//命名空間,防止重名給程序帶來各種隱患,使用cin,cout,stack,map,set,vector,queue時都要使用
int main() {
QueueManager que;
TestManager tm;
tm.Age = 25;
tm.Name = "李四";
tm.Weights = 60.12;
que.Add(tm);
std::cout<< que.Size()<
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧