skipws
Cause spaces to not be read by the input stream.
ios_base& skipws(
ios_base& _Str
);
매개 변수
- _Str
A reference to an object of type ios_base, or to a type that inherits from ios_base.
반환 값
A reference to the object from which _Str is derived.
설명
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.
예제
#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-7c710646fe164e56a13716cfeca60304-427552de85d6434a87716a83e9b0f774
요구 사항
Header: <ios>
네임스페이스: std