我有一个包含以下信息的文件:
INTERSECTIONS:
1 0.3 mountain and 1st
2 0.9 mountain and 2nd
3 0.1 mountain and 3rd
如何在 C++ 中扫描,以便扫描第一个数字并将其存储在 int 中,然后扫描下一个数字并将其单独存储,然后将街道名称存储在字符串中?我刚从 c 切换,所以我知道如何在 C 中使用
fscanf("%d %lf %s", int, float, string);
或者
fgets
使用字符串,但不知道如何在 C++ 中执行此操作。任何帮助,将不胜感激
主要的:
#include<iostream>
#include<list>
#include <fstream>
#include<cmath>
#include <cstdlib>
#include <string>
#include "vertex.h"
#include "edge.h"
#include "global.h"
using namespace std;
int main ( int argc, char *argv[] ){
if(argc != 4){
cout<< "usage: "<< argv[0]<<"<filename>\n";
}
else{
ifstream map_file (argv[3]);
if(!map_file.is_open()){
cout<<"could not open file\n";
}
else{
std::string line;
std::ifstream input(argv[3]);
int xsect;
int safety;
std:string xname;
std::list<vertex> xsection;
std::list<edge> EdgeList;
while (std::getline(input, line))
{
std::istringstream iss(line);
iss >> xsect >> safety;
std::getline(iss, xname);
}
}
}
}