Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Cause spaces to not be read by the input stream.
ios_base& skipws(
ios_base& _Str
);
Parameters
- _Str
A reference to an object of type ios_base, or to a type that inherits from ios_base.
Return Value
A reference to the object from which _Str is derived.
Remarks
By default, skipws is in effect. noskipws will cause spaces to be read from the input stream.
The manipulator effectively calls _Str.setf(ios_base::skipws), and then returns _Str.
Example
#include <iostream>
#include <string>
int main( )
{
using namespace std;
char s1, s2, s3;
cout << "Enter three characters: ";
cin >> skipws >> s1 >> s2 >> s3;
cout << "." << s1 << "." << endl;
cout << "." << s2 << "." << endl;
cout << "." << s3 << "." << endl;
}
1 2 3
FakePre-79d2e76d77b34d68b2eefe4ca841f688-40f1e284023d43d496a9f08d1d4a956a
Requirements
Header: <ios>
Namespace: std