Załóżmy, że mam taki kod:
void printHex(std::ostream& x){
x<<std::hex<<123;
}
..
int main(){
std::cout<<100; // prints 100 base 10
printHex(std::cout); //prints 123 in hex
std::cout<<73; //problem! prints 73 in hex..
}
Moje pytanie brzmi, czy istnieje sposób „przywrócenia” stanu cout
pierwotnego po powrocie z funkcji? (Trochę jak std::boolalpha
i std::noboolalpha
...)?
Dzięki.