c++ - checking for eof in string::getline - Stack Overflow

c++ - checking for eof in string::getline - Stack Overflow

瀏覽:710
日期:2025-06-30
while (getline(cin, str)) { } if (cin.bad()) { // IO error } else if (!cin.eof()) { // format error (not possible with getline but possible with operator>>) ......看更多