注意:請在回答之前閱讀評論。這個問題似乎是編譯器特定的。爲什麼iostream會在某些字中切斷第一個字母?
我有一個簡單的程序讀取一個名稱,並從文件或控制檯到一個struct Student_info一些成績,然後通過重載< <和>>運算打印出的一些數據。然而,該計劃正在切斷部分甚至整個單詞並轉移數據。例如,輸入
Eunice 29 87 42 33 18 13
Mary 71 24 3 96 70 14
Carl 61 12 10 44 82 36
Debbie 25 42 53 63 34 95
返回
Eunice: 42 33 18 13
Mary: 3 96 70 14
rl: 10 44 82 36
25: 63 34 95
表明不知何故,流已經忽略卡爾的前兩個字母,然後轉移整個流離開1個字。我一直試圖在一個小時內調試它,但似乎是任意的。對於不同的名字,不同的單詞被切斷,沒有明顯的模式。
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
struct Student_info {
friend std::ostream &operator<<(std::ostream &output,
const Student_info &S) { // overloads operator to print name and grades
output << S.name << ": ";
for (auto it = S.homework.begin(); it != S.homework.end(); ++it)
std::cout << *it << ' ';
return output;
}
friend std::istream &operator>>(std::istream &input, Student_info &S) { // overloads operator to read into Student_info object
input >> S.name >> S.midterm >> S.final;
double x;
if (input) {
S.homework.clear();
while (input >> x) {
S.homework.push_back(x);
}
input.clear();
}
return input;
}
std::string name; // student name
double midterm, final; // student exam scores
std::vector<double> homework; // student homework total score (mean or median)
};
int main() {
//std::ifstream myfile ("/Users/.../Documents/C++/example_short.txt");
Student_info student; // temp object for receiving data from istream
std::vector<Student_info> student_list; // list of students and their test grades
while (std::cin >> student) { // or myfile >> student
student_list.push_back(student);
student.homework.clear();
}
for (auto it = student_list.begin(); it != student_list.end(); ++it) {
std::cout << *it << '\n';
}
return 0;
}
編輯:添加換行符。
用'getline()'將整行讀入一個字符串,然後使用'std :: stringstream'將其讀入結構成員。 – Barmar
它在我的電腦上運行得非常好。 – Jiahao
@ArnoldLayne Odd。我在XCode 8.3.3中編譯,[this](http://imgur.com/a/bxNvU)是輸出。 – JAustin