У меня есть следующий код для чтения из файла
#include <queue>
#include <iostream>
#include <fstream>
#include <string>
main(int argc,char * argv[])
{
ifstream myFile(argv[1]);
queue<String> myQueue;
if(myFile.is_open())
{
while(...
///my read here
}
}
У меня есть такой файл ввода
1234 345
A 2 234
B 2 345
C 3 345
Я хочу сделать эквивалент этого в цикле чтения
myQueue.push("1234");
myQueue.push("345");
myQueue.push("A");
myQueue.push("2");
myQueue.push("234");
myQueue.push("B");
...
Какой лучший способ сделать это?
Спасибо!