istrstream

 
#include     
#include    
using namespace std;
main()   
{   
  char s[] = "text and binary mixed\23\22\21\a\t\n";   
     
  istrstream ins(s);   
     
  char ch;   
     
  while (!ins.eof()) {   
    ins.get(ch);   
    cout << ch;   
  }   
     
  return 0;   
}
  

你可能感兴趣的:(C++文件操作)