C++
Stream-Manipulatoren
Suche…
Einführung
Manipulatoren sind spezielle Hilfsfunktionen, mit deren Hilfe Eingabe- und Ausgabeströme mit dem operator >>
oder operator <<
gesteuert werden.
Sie können alle mit #include <iomanip>
.
Bemerkungen
Manipulatoren können auf andere Weise verwendet werden. Zum Beispiel:
-
os.width(n);
entsprichtos << std::setw(n);
is.width(n);
entsprichtis >> std::setw(n);
-
os.precision(n);
entsprichtos << std::setprecision(n);
is.precision(n);
entsprichtis >> std::setprecision(n);
-
os.setfill(c);
entsprichtos << std::setfill(c);
-
str >> std::setbase(base);
oderstr << std::setbase(base);
ist gleich
str.setf(base == 8 ? std::ios_base::oct :
base == 10 ? std::ios_base::dec :
base == 16 ? std::ios_base::hex :
std::ios_base::fmtflags(0),
std::ios_base::basefield);
-
os.setf(std::ios_base::flag);
entsprichtos << std::flag;
is.setf(std::ios_base::flag);
entsprichtis >> std::flag;
os.unsetf(std::ios_base::flag);
entsprichtos << std::no ## flag;
is.unsetf(std::ios_base::flag);
entsprichtis >> std::no ## flag;
(wobei ## - Verkettungsoperator ist )
für die nächsteflag
s:boolalpha
,showbase
,showpoint
,showpos
,skipws
,uppercase
.
-
std::ios_base::basefield
.
Fürflag
s:dec
,hex
undoct
:
-
os.setf(std::ios_base::flag, std::ios_base::basefield);
entsprichtos << std::flag;
is.setf(std::ios_base::flag, std::ios_base::basefield);
entsprichtis >> std::flag;
(1) -
str.unsetf(std::ios_base::flag, std::ios_base::basefield);
entsprichtstr.setf(std::ios_base::fmtflags(0), std::ios_base::basefield);
(2)
-
std::ios_base::adjustfield
.
Fürflag
s:left
,right
undinternal
:
-
os.setf(std::ios_base::flag, std::ios_base::adjustfield);
entsprichtos << std::flag;
is.setf(std::ios_base::flag, std::ios_base::adjustfield);
entsprichtis >> std::flag;
(1) -
str.unsetf(std::ios_base::flag, std::ios_base::adjustfield);
entsprichtstr.setf(std::ios_base::fmtflags(0), std::ios_base::adjustfield);
(2)
(1) Wenn das Flag des entsprechenden Felds zuvor durch unsetf
.
(2) Wenn das flag
gesetzt ist.
-
std::ios_base::floatfield
.
-
os.setf(std::ios_base::flag, std::ios_base::floatfield);
entsprichtos << std::flag;
is.setf(std::ios_base::flag, std::ios_base::floatfield);
entsprichtis >> std::flag;
fürflag
s:fixed
undscientific
. -
os.setf(std::ios_base::fmtflags(0), std::ios_base::floatfield);
entsprichtos << std::defaultfloat;
is.setf(std::ios_base::fmtflags(0), std::ios_base::floatfield);
entsprichtis >> std::defaultfloat;
-
str.setf(std::ios_base::fmtflags(0), std::ios_base::flag);
entsprichtstr.unsetf(std::ios_base::flag)
fürflag
s:basefield
,adjustfield
,floatfield
.
-
os.setf(mask)
entsprichtos << setiosflags(mask);
is.setf(mask)
entsprichtis >> setiosflags(mask);
os.unsetf(mask)
entsprichtos << resetiosflags(mask);
is.unsetf(mask)
gleichis >> resetiosflags(mask);
Für fast allemask
des Typsstd::ios_base::fmtflags
.
Stream-Manipulatoren
std::boolalpha
und std::noboolalpha
- zwischen textlicher und numerischer Darstellung von Booleschen wechseln.
std::cout << std::boolalpha << 1;
// Output: true
std::cout << std::noboolalpha << false;
// Output: 0
bool boolValue;
std::cin >> std::boolalpha >> boolValue;
std::cout << "Value \"" << std::boolalpha << boolValue
<< "\" was parsed as " << std::noboolalpha << boolValue;
// Input: true
// Output: Value "true" was parsed as 0
std::showbase
und std::noshowbase
- steuern, ob ein Präfix für die numerische Basis verwendet wird.
std::dec
(dezimal), std::hex
(hexadezimal) und std::oct
(octal) - werden zum Ändern der Basis für Ganzzahlen verwendet.
#include <sstream>
std::cout << std::dec << 29 << ' - '
<< std::hex << 29 << ' - '
<< std::showbase << std::oct << 29 << ' - '
<< std::noshowbase << 29 '\n';
int number;
std::istringstream("3B") >> std::hex >> number;
std::cout << std::dec << 10;
// Output: 22 - 1D - 35 - 035
// 59
Standardwerte sind std::ios_base::noshowbase
und std::ios_base::dec
.
Wenn Sie mehr über std::istringstream
überprüfen Sie den < sstream > -Header.
std::uppercase
und std::nouppercase
- steuern, ob Großbuchstaben in der Ausgabe von Fließkomma- und Hexadezimal-Integer verwendet werden. Habe keine Auswirkung auf Eingabeströme.
std::cout << std::hex << std::showbase
<< "0x2a with nouppercase: " << std::nouppercase << 0x2a << '\n'
<< "1e-10 with uppercase: " << std::uppercase << 1e-10 << '\n'
}
// Output: 0x2a with nouppercase: 0x2a
// 1e-10 with uppercase: 1E-10
Standard ist std::nouppercase
.
std::setw(n)
- ändert die Breite des nächsten Eingabe- / Ausgabefeldes auf genau n
.
Die width-Eigenschaft n
wird auf 0
wenn einige Funktionen aufgerufen werden (vollständige Liste ist hier ).
std::cout << "no setw:" << 51 << '\n'
<< "setw(7): " << std::setw(7) << 51 << '\n'
<< "setw(7), more output: " << 13
<< std::setw(7) << std::setfill('*') << 67 << ' ' << 94 << '\n';
char* input = "Hello, world!";
char arr[10];
std::cin >> std::setw(6) >> arr;
std::cout << "Input from \"Hello, world!\" with setw(6) gave \"" << arr << "\"\n";
// Output: 51
// setw(7): 51
// setw(7), more output: 13*****67 94
// Input: Hello, world!
// Output: Input from "Hello, world!" with setw(6) gave "Hello"
Standard ist std::setw(0)
.
std::left
, std::right
und std::internal
- Ändern Sie die Standardposition der Füllzeichen, indem Sie std::ios_base::adjustfield
auf std::ios_base::left
, std::ios_base::right
und std::ios_base::internal
entsprechend. std::left
und std::right
gelten für jede Ausgabe, std::internal
- für Ganzzahl-, Gleitkomma- und Geldausgabe. Habe keine Auswirkung auf Eingabeströme.
#include <locale>
...
std::cout.imbue(std::locale("en_US.utf8"));
std::cout << std::left << std::showbase << std::setfill('*')
<< "flt: " << std::setw(15) << -9.87 << '\n'
<< "hex: " << std::setw(15) << 41 << '\n'
<< " $: " << std::setw(15) << std::put_money(367, false) << '\n'
<< "usd: " << std::setw(15) << std::put_money(367, true) << '\n'
<< "usd: " << std::setw(15)
<< std::setfill(' ') << std::put_money(367, false) << '\n';
// Output:
// flt: -9.87**********
// hex: 41*************
// $: $3.67**********
// usd: USD *3.67******
// usd: $3.67
std::cout << std::internal << std::showbase << std::setfill('*')
<< "flt: " << std::setw(15) << -9.87 << '\n'
<< "hex: " << std::setw(15) << 41 << '\n'
<< " $: " << std::setw(15) << std::put_money(367, false) << '\n'
<< "usd: " << std::setw(15) << std::put_money(367, true) << '\n'
<< "usd: " << std::setw(15)
<< std::setfill(' ') << std::put_money(367, true) << '\n';
// Output:
// flt: -**********9.87
// hex: *************41
// $: $3.67**********
// usd: USD *******3.67
// usd: USD 3.67
std::cout << std::right << std::showbase << std::setfill('*')
<< "flt: " << std::setw(15) << -9.87 << '\n'
<< "hex: " << std::setw(15) << 41 << '\n'
<< " $: " << std::setw(15) << std::put_money(367, false) << '\n'
<< "usd: " << std::setw(15) << std::put_money(367, true) << '\n'
<< "usd: " << std::setw(15)
<< std::setfill(' ') << std::put_money(367, true) << '\n';
// Output:
// flt: **********-9.87
// hex: *************41
// $: **********$3.67
// usd: ******USD *3.67
// usd: USD 3.67
Standard ist std::left
.
std::fixed
, std::scientific
, std::hexfloat
[C ++ 11] und std::defaultfloat
[C ++ 11] - Formatierung für Gleitkomma-Eingabe / Ausgabe ändern.
std::fixed
setzt std::ios_base::floatfield
auf std::ios_base::fixed
,
std::scientific
- bis std::ios_base::scientific
,
std::hexfloat
- bis std::ios_base::fixed | std::ios_base::scientific
und
std::defaultfloat
- bis std::ios_base::fmtflags(0)
.
fmtflags
#include <sstream>
...
std::cout << '\n'
<< "The number 0.07 in fixed: " << std::fixed << 0.01 << '\n'
<< "The number 0.07 in scientific: " << std::scientific << 0.01 << '\n'
<< "The number 0.07 in hexfloat: " << std::hexfloat << 0.01 << '\n'
<< "The number 0.07 in default: " << std::defaultfloat << 0.01 << '\n';
double f;
std::istringstream is("0x1P-1022");
double f = std::strtod(is.str().c_str(), NULL);
std::cout << "Parsing 0x1P-1022 as hex gives " << f << '\n';
// Output:
// The number 0.01 in fixed: 0.070000
// The number 0.01 in scientific: 7.000000e-02
// The number 0.01 in hexfloat: 0x1.1eb851eb851ecp-4
// The number 0.01 in default: 0.07
// Parsing 0x1P-1022 as hex gives 2.22507e-308
Der Standardwert ist std::ios_base::fmtflags(0)
.
Bei einigen Compilern liegt ein Fehler vor, der die Ursache hat
double f;
std::istringstream("0x1P-1022") >> std::hexfloat >> f;
std::cout << "Parsing 0x1P-1022 as hex gives " << f << '\n';
// Output: Parsing 0x1P-1022 as hex gives 0
std::showpoint
und std::noshowpoint
- steuern, ob in der Fließkommadarstellung immer ein Dezimalpunkt enthalten ist. Habe keine Auswirkung auf Eingabeströme.
std::cout << "7.0 with showpoint: " << std::showpoint << 7.0 << '\n'
<< "7.0 with noshowpoint: " << std::noshowpoint << 7.0 << '\n';
// Output: 1.0 with showpoint: 7.00000
// 1.0 with noshowpoint: 7
Standard ist std::showpoint
.
std::showpos
und std::noshowpos
- Steuerung Anzeige der +
Zeichen in nicht-negativen Ausgang. Habe keine Auswirkung auf Eingabeströme.
std::cout << "With showpos: " << std::showpos
<< 0 << ' ' << -2.718 << ' ' << 17 << '\n'
<< "Without showpos: " << std::noshowpos
<< 0 << ' ' << -2.718 << ' ' << 17 << '\n';
// Output: With showpos: +0 -2.718 +17
// Without showpos: 0 -2.718 17
Standardeinstellung wenn std::noshowpos
.
std::unitbuf
, std::nounitbuf
- Kontrolle des Ausgabestroms nach jeder Operation. Habe keine Auswirkung auf den Eingabestrom. std::unitbuf
führt zum Spülen.
std::setbase(base)
- std::setbase(base)
die numerische Basis des Streams fest.
std::setbase(8)
entspricht der Einstellung von std::ios_base::basefield
auf std::ios_base::oct
std::setbase(16)
- bis std::ios_base::hex
,
std::setbase(10)
- bis std::ios_base::dec
.
Wenn base
anders als 8
, 10
oder 16
ist, wird std::ios_base::basefield
auf std::ios_base::fmtflags(0)
. Es bedeutet dezimale Ausgabe und präfixabhängige Eingabe.
Standardmäßig ist std::ios_base::basefield
std::ios_base::dec
und standardmäßig std::setbase(10)
.
std::setprecision(n)
- ändert die Gleitkomma-Genauigkeit.
#include <cmath>
#include <limits>
...
typedef std::numeric_limits<long double> ld;
const long double pi = std::acos(-1.L);
std::cout << '\n'
<< "default precision (6): pi: " << pi << '\n'
<< " 10pi: " << 10 * pi << '\n'
<< "std::setprecision(4): 10pi: " << std::setprecision(4) << 10 * pi << '\n'
<< " 10000pi: " << 10000 * pi << '\n'
<< "std::fixed: 10000pi: " << std::fixed << 10000 * pi << std::defaultfloat << '\n'
<< "std::setprecision(10): pi: " << std::setprecision(10) << pi << '\n'
<< "max-1 radix precicion: pi: " << std::setprecision(ld::digits - 1) << pi << '\n'
<< "max+1 radix precision: pi: " << std::setprecision(ld::digits + 1) << pi << '\n'
<< "significant digits prec: pi: " << std::setprecision(ld::digits10) << pi << '\n';
// Output:
// default precision (6): pi: 3.14159
// 10pi: 31.4159
// std::setprecision(4): 10pi: 31.42
// 10000pi: 3.142e+04
// std::fixed: 10000pi: 31415.9265
// std::setprecision(10): pi: 3.141592654
// max-1 radix precicion: pi: 3.14159265358979323851280895940618620443274267017841339111328125
// max+1 radix precision: pi: 3.14159265358979323851280895940618620443274267017841339111328125
// significant digits prec: pi: 3.14159265358979324
Standard ist std::setprecision(6)
.
std::setiosflags(mask)
und std::resetiosflags(mask)
- Setzen und Löschen von Flags, die in der mask
vom Typ std::ios_base::fmtflags
.
#include <sstream>
...
std::istringstream in("10 010 10 010 10 010");
int num1, num2;
in >> std::oct >> num1 >> num2;
std::cout << "Parsing \"10 010\" with std::oct gives: " << num1 << ' ' << num2 << '\n';
// Output: Parsing "10 010" with std::oct gives: 8 8
in >> std::dec >> num1 >> num2;
std::cout << "Parsing \"10 010\" with std::dec gives: " << num1 << ' ' << num2 << '\n';
// Output: Parsing "10 010" with std::oct gives: 10 10
in >> std::resetiosflags(std::ios_base::basefield) >> num1 >> num2;
std::cout << "Parsing \"10 010\" with autodetect gives: " << num1 << ' ' << num2 << '\n';
// Parsing "10 010" with autodetect gives: 10 8
std::cout << std::setiosflags(std::ios_base::hex |
std::ios_base::uppercase |
std::ios_base::showbase) << 42 << '\n';
// Output: OX2A
std::skipws
und std::noskipws
- steuern Sie das Überspringen des führenden Leerraums durch die formatierten Eingabefunktionen. Habe keine Auswirkung auf Ausgabeströme.
#include <sstream>
...
char c1, c2, c3;
std::istringstream("a b c") >> c1 >> c2 >> c3;
std::cout << "Default behavior: c1 = " << c1 << " c2 = " << c2 << " c3 = " << c3 << '\n';
std::istringstream("a b c") >> std::noskipws >> c1 >> c2 >> c3;
std::cout << "noskipws behavior: c1 = " << c1 << " c2 = " << c2 << " c3 = " << c3 << '\n';
// Output: Default behavior: c1 = a c2 = b c3 = c
// noskipws behavior: c1 = a c2 = c3 = b
Die Standardeinstellung ist std::ios_base::skipws
.
std::quoted(s[, delim[, escape]])
[C ++ 14] - fügt zitierte Zeichenfolgen mit eingebetteten Leerzeichen ein oder extrahiert sie.
s
- die Zeichenkette, die eingefügt oder extrahiert werden soll.
delim
- das Zeichen als Trennzeichen zu verwenden, "
standardmäßig aktiviert .
escape
- das Zeichen als Escape - Zeichen zu verwenden, \
standardmäßig.
#include <sstream>
...
std::stringstream ss;
std::string in = "String with spaces, and embedded \"quotes\" too";
std::string out;
ss << std::quoted(in);
std::cout << "read in [" << in << "]\n"
<< "stored as [" << ss.str() << "]\n";
ss >> std::quoted(out);
std::cout << "written out [" << out << "]\n";
// Output:
// read in [String with spaces, and embedded "quotes" too]
// stored as ["String with spaces, and embedded \"quotes\" too"]
// written out [String with spaces, and embedded "quotes" too]
Weitere Informationen finden Sie unter dem Link oben.
Ausgabestrommanipulatoren
std::ends
- fügt ein Nullzeichen '\0'
in den Ausgabestrom ein. Formaler sieht diese Manipulator-Deklaration aus
template <class charT, class traits>
std::basic_ostream<charT, traits>& ends(std::basic_ostream<charT, traits>& os);
und dieser Manipulator platziert ein Zeichen durch Aufrufen von os.put(charT())
bei Verwendung in einem Ausdruck
os << std::ends;
std::endl
und std::flush
beides spülen den Ausgabestrom ab out
indem Sie out.flush()
aufrufen. Dadurch wird sofort eine Ausgabe erzeugt. Aber std::endl
fügt das Zeilenende '\n'
vor dem Löschen ein.
std::cout << "First line." << std::endl << "Second line. " << std::flush
<< "Still second line.";
// Output: First line.
// Second line. Still second line.
std::setfill(c)
- ändert das Füllzeichen in c
. std::setw
häufig mit std::setw
.
std::cout << "\nDefault fill: " << std::setw(10) << 79 << '\n'
<< "setfill('#'): " << std::setfill('#')
<< std::setw(10) << 42 << '\n';
// Output:
// Default fill: 79
// setfill('#'): ########79
std::put_money(mon[, intl])
[C ++ 11]. In einem Ausdruck out << std::put_money(mon, intl)
konvertiert der monetäre Wert mon
(vom Typ long double
oder std::basic_string
) in seine Zeichendarstellung, wie von der std::money_put
Facette des aktuell verwendeten Gebietsschemas angegeben in out
Verwenden Sie internationale Währungszeichenfolgen, wenn intl
true
, verwenden Sie ansonsten Währungssymbole.
long double money = 123.45;
// or std::string money = "123.45";
std::cout.imbue(std::locale("en_US.utf8"));
std::cout << std::showbase << "en_US: " << std::put_money(money)
<< " or " << std::put_money(money, true) << '\n';
// Output: en_US: $1.23 or USD 1.23
std::cout.imbue(std::locale("ru_RU.utf8"));
std::cout << "ru_RU: " << std::put_money(money)
<< " or " << std::put_money(money, true) << '\n';
// Output: ru_RU: 1.23 руб or 1.23 RUB
std::cout.imbue(std::locale("ja_JP.utf8"));
std::cout << "ja_JP: " << std::put_money(money)
<< " or " << std::put_money(money, true) << '\n';
// Output: ja_JP: ¥123 or JPY 123
std::put_time(tmb, fmt)
[C ++ 11] - formatiert und gibt einen Datums- / Zeitwert gemäß dem angegebenen Format fmt
an std::tm
.
tmb
- Zeiger auf die Kalenderzeitstruktur const std::tm*
wie von localtime()
oder gmtime()
.
fmt
- Zeiger auf einen nullterminierten String const CharT*
, der das Format der Konvertierung angibt.
#include <ctime>
...
std::time_t t = std::time(nullptr);
std::tm tm = *std::localtime(&t);
std::cout.imbue(std::locale("ru_RU.utf8"));
std::cout << "\nru_RU: " << std::put_time(&tm, "%c %Z") << '\n';
// Possible output:
// ru_RU: Вт 04 июл 2017 15:08:35 UTC
Weitere Informationen finden Sie unter dem Link oben.
Eingangsstrom-Manipulatoren
std::ws
verbraucht führende Leerzeichen im Eingabestrom. Es unterscheidet sich von std::skipws
.
#include <sstream>
...
std::string str;
std::istringstream(" \v\n\r\t Wow!There is no whitespaces!") >> std::ws >> str;
std::cout << str;
// Output: Wow!There is no whitespaces!
std::get_money(mon[, intl])
[C ++ 11]. In einem Ausdruck in >> std::get_money(mon, intl)
die Zeicheneingabe als monetärer Wert analysiert, wie von der std::money_get
Facette des aktuell in in
std::money_get
Gebietsschemas angegeben, und der Wert wird in mon
( long double
std::money_get
long double
oder std::basic_string
type). Der Manipulator erwartet die erforderlichen internationalen Währungszeichenfolgen, wenn intl
true
ist. Andernfalls werden optionale Währungssymbole erwartet.
#include <sstream>
#include <locale>
...
std::istringstream in("$1,234.56 2.22 USD 3.33");
long double v1, v2;
std::string v3;
in.imbue(std::locale("en_US.UTF-8"));
in >> std::get_money(v1) >> std::get_money(v2) >> std::get_money(v3, true);
if (in) {
std::cout << std::quoted(in.str()) << " parsed as: "
<< v1 << ", " << v2 << ", " << v3 << '\n';
}
// Output:
// "$1,234.56 2.22 USD 3.33" parsed as: 123456, 222, 333
std::get_time(tmb, fmt)
[C ++ 11] - analysiert einen Datums- / Zeitwert, der in tmb
des angegebenen Formats fmt
gespeichert ist.
tmb
- gültiger Zeiger auf das Objekt const std::tm*
, in dem das Ergebnis gespeichert wird.
fmt
- Zeiger auf eine mit Null abgeschlossene Zeichenfolge const CharT*
, die das Konvertierungsformat angibt.
#include <sstream>
#include <locale>
...
std::tm t = {};
std::istringstream ss("2011-Februar-18 23:12:34");
ss.imbue(std::locale("de_DE.utf-8"));
ss >> std::get_time(&t, "%Y-%b-%d %H:%M:%S");
if (ss.fail()) {
std::cout << "Parse failed\n";
}
else {
std::cout << std::put_time(&t, "%c") << '\n';
}
// Possible output:
// Sun Feb 18 23:12:34 2011
Weitere Informationen finden Sie unter dem Link oben.