[c++] 파일 입출력 #include<strstream>활용..

gyxor의 이미지

#include<iostream>
#include<fstream>
#include<istream>
#include<strstream>
using namespace std;

int main(){
    
 ifstream file;
 file.open("test.txt",ios::in);

 char data[20]={0};
 
 istrstream ist(data);
    istream& stream = ist;
 ist.getline(data,20);
 stream.getline(data,20);

 cout << data;
 
 return 0;
}


위 내용에서

ist.getline(data,20);
stream.getline(data,20);

이 두부분은 data배열에 문자열을 받아야 하는데요..

실제로는 구현이 안됩니다.
왜 안되는지 잘 모르겠습니다.

특별히 어떤 목적이 있어서 저렇게 한것은 아니구요 공부하던중..
책에있는 내용중에 발췌해서 해본것인데요..

#include<strstream>은 string 용 stream파일인가요?
이 헤더파일은 정확히 용도가 무엇인지 잘 모르겠습니다.

구현이 안되는 이유와 strstream헤더에 관해서
설명부탁드립니다.

progcom의 이미지

strstream은 string을 위한 스트림입니다. 하지만 표준은 <sstream>으로 바뀌었으니 참고하시는게 좋을 듯 싶군요. (사용시에는 stringstream)

지금 스트림에 아무런 데이터도 존재하지 않으니 읽어오는게 없는게 당연한겁니다. 위에서 파일을 열긴 했는데, 정작 아무것도 읽어오진 않았군요. :)

gyxor의 이미지

#include<iostream> 
#include<fstream> 
using namespace std; 

int main(){ 
    
 ofstream file; 
 file.open("test.txt",ios::out); 
 file <<  "Hello!!";
 
 return 0; 
}

첫째,
위 소스에서 ofstream -> fstream으로 바꾸면 정상수행됩니다.
ifstream으로 바꾸면 에러가납니다. 다시말해서
fstream으로 스트림객체를 생성하게 되면 ifstream이나 ofstream 형식
으로 둘다 사용가능합니다. 그 이유가 fstream형식이 ifstream이나 ofstream의
파라미터로 들어가서 상속되는 절차가 있기 때문인가요?

(참고로 아래 소스에서도 마찬가지로 stringstream이나 istringstream둘다 됩니다.)

#include<iostream> 
#include<fstream> 
#include<sstream>
using namespace std; 

int main(){ 
    
 char data[20]="testphph"; 
 char temp1[20]={0};
 char temp2[20]={0};
 
 istringstream ist(data); 
 
 ist.getline(temp1,4); 
 cout << temp1 <<endl; 
 ist.getline(temp2,4); 
 cout << temp2; 
  
 return 0; 
}  

둘째, 위소스의 실행결과는

tes
Press any key to continue

입니다.
두번째
ist.getline(temp2,4);
cout << temp2;
부분에서 스트림이 읽혀지지가 않습니다.
왜 그런것인지 궁금합니다.

두가지 답변부탁드립니다.

gyxor의 이미지

 char data[20]="te\nphph"; 

이런식으로 중간에 newline문자를 넣어줬더니 원하는대로 결과가 나왔습니다.
getline()함수의 특성을 잘 몰라서 그랬던거 같습니다.

istream& getline( signed char* psch, int nCount, char delim = '\n' );

구분자에 의해서 getline이 완료된 경우엔 나머지 스트림을
getline으로 읽을수 있지만 nCount값에 의해 완료된겨우엔
나머지 스트림을 getline으로 읽을 수가 없었습니다.
아래소스에서 테스트해본결과 남은스트림이 사라지는것같았습니다.

char data[20]="tere\nph"; 
 char temp1[20]={0}; 
 char temp2=0; 
  
 istringstream ist(data); 
  
 ist.getline(temp1,4); 
 cout << temp1 <<endl; 
 temp2 = ist.get(); 
 cout << temp2; 

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.