stl에서 cin으로 istream_iterator를 초기화 했을때

SoftOn의 이미지

STL 튜토리얼.레퍼런스 가이드 제2판의 예제4.1의 일부입니다.

#include <iostream>
#include <iterator>
#include <algorithm>
using namespace std;

int main(int argc, char* argv[])
{
    istream_iterator<char> in(cin);
    istream_iterator<char> eos;
    find(in, eos, 'x');
    cout << *(++in) << endl;
    return 0;
}

위를 실행하고 "example\n"를 입력하면 출력값으로 'a'가 나옵니다. 이것을 충분히 예상 가능한 일이고요..

제가 하고 싶은 질문은 다음과 같습니다.

만약 "ex\n"를 입력하였을때 제가 예상하기에는 런타임 에러를 내던지 null값을 출력하던지 둘 중하나를 할 줄 알았습니다.
하지만 디버깅해보니 cout 줄에서 다음 입력이 있을때까지 멈춥니다. 그 이유가 뭘까요?

bugiii의 이미지

find 의 종료 조건을 'x' 를 찾던가 아니면 스트림의 끝이라고 하신 것 같습니다. 한줄마다 끝이 아닌 것이죠. 원하시는 것이 한줄을 읽어서 여기서 값을 찾는다면 원하는 바대로 한줄을 메모리로 읽은 다음 찾는 것이 맞을 것 같습니다. find 가 끝을 내주지 않는 것이 아니라 find 내부에서 스트림의 반복자를 이용해서 스트림의 값을 읽어 올테고 스트림은 블러킹 동작을 할테니까 거기서 멈추고 있을 것 같습니다.

그리고 *(++in) 이라는 문장도 문제가 있을 수 있지 않을까요? 증가한 반복자가 무효구간을 가리키고 있다면 곤란한(?) 경우가 종종 생기더군요. 예를 들어 입력을 ex^D (Ctrl+D) 라고 한다면 문제가 되는 경우가 생길지도 모르겠습니다.

doldori의 이미지

bugiii wrote:
그리고 *(++in) 이라는 문장도 문제가 있을 수 있지 않을까요? 증가한 반복자가 무효구간을 가리키고 있다면 곤란한(?) 경우가 종종 생기더군요. 예를 들어 입력을 ex^D (Ctrl+D) 라고 한다면 문제가 되는 경우가 생길지도 모르겠습니다.

네, 맞습니다. in이 스트림의 끝과 같다면 * 연산의 결과는 정의되지 않습니다.
STL의 관례에 따른다면 이렇게 해야겠죠.
istream_iterator<char> in(cin); 
istream_iterator<char> eos; 
find(in, eos, 'x'); 
if (in != eos && ++in != eos)
    cout << *in << endl; 

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.