我不知道如何获取用户输入并将其推送到我的队列中。我尝试查找示例,但找不到任何内容。这是我的一段代码:
queue<int> temp;
int Temperature::getTemp()
{
//excluded code
getline(myEngFile1, tempLine1); // assigns "what is temp?" to tempLine1
cout<<tempLine1<<"\n"; // What is the Temperature?
//cin>>value;
temp.push(value);
return value;
myEngFile1.close();
}
我如何获取它以便我可以读取用户的输入并将其推送到我的队列中?