Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
296 views
in Technique[技术] by (71.8m points)

Reading Different Variable types from one File c++


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
ifstream file("test.txt");
while (file) {
    getline(file, Name);
    getline(file, Species);
    getline(file, Location);
    file >> Length;
    file >> Weight;

    if (file) {
       cout << Name << "
" << Species << "
" <<Location << "
" <<Length << "
";

        // add this to skip the 2 newlines before reading the next string
        file.ignore(std::numeric_limits<std::streamsize>::max(), '
');
        file.ignore(std::numeric_limits<std::streamsize>::max(), '
'); 
    }
    else {
       throw "Invalid input";
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...