ifstream
싱글 바이트 문자 데이터를 순차적으로 파일에서 읽는 데 사용할 스트림을 정의 합니다.ifstream전문 템플릿 클래스를 typedef입니다 basic_ifstream 에 대 한 char.
또한 wifstream, 전문 형식 정의 basic_ifstream 읽을 수 wchar_t 두 배로 넓은 문자입니다.자세한 내용은 wifstream를 참조하십시오.
typedef basic_ifstream<char, char_traits<char> > ifstream;
설명
템플릿 클래스에 대 한 동의어입니다 basic_ifstream, char 형식의 기본 문자 특성으로 요소에 대 한 전문.예제가입니다.
using namespace std;
ifstream infile("existingtextfile.txt");
if (!infile.bad())
{
// Dump the contents of the file to cout.
cout << infile.rdbuf();
infile.close();
}
요구 사항
헤더: <fstream>
네임 스페이스: 국방 표준