I am trying to write a function which will detect when I'm almost at the end of a stringstream, but it doesn't seem to work.

Here's some code:

std::string path(1.2.3);
int number;
std::stringstream ss(path);
while (!ss.eof()) {
    if (ss.peek() != '.') {
        ss >> number;
        if (ss.tellg() == path.length()) {
            std::cout << "Last one: " << number;
        } else {
            std::cout << number;
        }
    } else { ss.get(); }
}

I tried using ss.tellg() == path.length(), but that doesn't work. Does somebody have an alternative?

有帮助吗?

解决方案

I figured it out..

std::string path(1.2.3);
int number;
std::stringstream ss(path);
while (!ss.eof()) {
    if (ss.peek() != '.') {
        ss >> number;
        if (ss.tellg() == -1) {
            std::cout << "Last one: " << number;
        } else {
            std::cout << number;
        }
    } else { ss.get(); }
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top