Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6531653
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T09:54:17+00:00 2026-05-25T09:54:17+00:00

Why doesn’t this code want to load all the values from a text file?

  • 0

Why doesn’t this code want to load all the values from a text file? It only loads the first object’s items correctly but after that it starts going weird. Here is the code:

#include <iostream>
#include <fstream>
#include <cstdlib>

using namespace std;
class Location
{
public:
    Location()
    {
        locName = "No Name";
        locDesc = "No Description";
        locID = 0;
    }

    friend ostream& operator <<(ostream& outs, const Location & showMe)
    {
        // keeping output same as input...
        outs << showMe.locName << endl;
        outs << showMe.locDesc << endl;
        outs << showMe.locID << endl;

        return outs;
    }

    friend istream& operator >>(istream& ins, Location & inLoc)
    {
        getline(ins, inLoc.locName);
        getline(ins, inLoc.locDesc);
        ins >> inLoc.locID;

        return ins;
    }

private:
    string locName;
    string locDesc;
    int locID;
};

int main()
{
    ifstream inFile;

    inFile.open("loc_data.txt");
    if (inFile.fail())
        {
            cout << "\nCould not open the input file!";
            exit(1);
        }

    Location fileLoc[10];
    int i = 0;

    while (inFile.good())
        {
            inFile >> fileLoc[i];
            i++;
        }

    for (int j = 0; j < 10; j++)
        cout << fileLoc[j];

    return 0;
}

The input file is:

Town Hall
Main venue for functions
1
City Park
Outdoor venue
2
Train Station
Commuting point
3
Local Airport
Long distance travel
4

And the output is:

Town Hall
Main venue for functions
1

City Park
0
No Name
No Description
0
No Name
No Description
0
No Name
No Description
0
No Name
No Description
0
No Name
No Description
0
No Name
No Description
0
No Name
No Description
0
No Name
No Description
0

I have a suspucion that getline is responsible for this but do not know enough to be sure, however I would really like to know why this is happening and not just a ‘fix’.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T09:54:17+00:00Added an answer on May 25, 2026 at 9:54 am

    Your first problem is that this line doesn’t extract the newline character:

    ins >> inLoc.locID;
    

    This means that the getline in for the second Location is extracting the rest of the line after 1 – i.e. an empty string – for the name.

    This means that you are quickly getting out of sync with the lines that you want to read.

    You should also consider changing your while loop, as it stands you check whether the stream is “good” before extracting a new location but you do not check whether the extraction was successful, you assume that the extraction works.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Why doesn't this work (when parameter is set to 1) : SELECT * FROM
For some reason, after submitting a string like this Jack’s Spindle from a text
Why doesn't this code compile? template <class T> class A { public: A(T t)
Why doesn't this print all the passed arguments, in bash? function abc() { echo
Doesn't being required to virtualize all property accessors you want to mock kind of
Why doesn't this jQuery code work? $(document).ready(function () { $('currentPage').click(function() { $('myaccount').slideDown('slow', function() {
Why doesn't this Google Chart API URL render both data sets on this XY
There doesn't seem to be much info on this topic so I'm going to
Does anyone know how can I replace this 2 symbol below from the string
doesn't work.. can't find any solution to prevent submit page reload only if ajax

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.