다음을 통해 공유


noskipws

입력된 스트림에서 읽을 수 있는 공간으로 인해.

ios_base& noskipws(
   ios_base& _Str
);

매개 변수

  • _Str
    참조 형식의 개체를 ios_base, 상속 형식 또는 ios_base.

반환 값

개체의 참조는 _Str 파생 됩니다.

설명

기본적으로 skipws 적용 됩니다.공간에 입력된 스트림의 읽을 때 버퍼의 끝을 알립니다.

효과적으로 manipulator를 호출 _Str.unsetf(ios_base::skipws), 다음 반환 _Str.

예제

// ios_noskipws.cpp
// compile with: /EHsc
#include <iostream>
#include <string>

int main() {
   using namespace std;   
   string s1, s2, s3;
   cout << "Enter three strings: ";
   cin >> noskipws >> s1 >> s2 >> s3;
   cout << "." << s1  << "." << endl;
   cout << "." << s2 << "." << endl;
   cout << "." << s3 << "." << endl;   
}

입력

1 2 3

샘플 출력

.1.
..
..

요구 사항

헤더: <ios>

네임 스페이스: std

참고 항목

참조

iostream 프로그래밍

iostreams 규칙