kennen:lib:resetiosflags
Inhaltsverzeichnis
resetiosflags()
Parameter
mask | zurückzusetzende Schalter |
Ergebnis
Rückgabewert: ein implementationsabhängiger Manipulator,
der für den Ein- oder Ausgabe-Datenstrom
strom.unsetf(mask)
aufruft.
Siehe auch
Beispiel
- resetiosflags.cpp
#include <iostream> #include <iomanip> int main() { double pi = 3.1415; std::cout << std::setiosflags(std::ios:base::scientific) << pi << std::resetiosflags(std::ios_base::scientific) << pi << '\n'; }
kennen/lib/resetiosflags.txt · Zuletzt geändert: 2019-11-20 16:12 von 127.0.0.1