stringstream parser;
parser << 5;
short top = 0;
parser >> top;
parser.str(""); //HERE I'M RESETTING parser
parser << 6; //DOESN'T PUT 6 INTO parser
short bottom = 0;
parser >> bottom;
Why doesn't it work?
Why doesn't it work? |
||||
|
|
|
Typically to 'reset' a stringstream you need to both reset the underlying sequence to an empty string with
Typically what happens is that the first |
|||||||
|