नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
The <fstream> header provides the following typedefs:
filebuf
A type basic_filebuf specialized on char template parameters.
typedef basic_filebuf<char, char_traits<char>> filebuf;
Remarks
The type is a synonym for class template basic_filebuf, specialized for elements of type char with default character traits.
fstream
A type basic_fstream specialized on char template parameters.
typedef basic_fstream<char, char_traits<char>> fstream;
Remarks
The type is a synonym for class template basic_fstream, specialized for elements of type char with default character traits.
ifstream
Defines a stream to be used to read single-byte character data serially from a file. ifstream is a typedef that specializes the class template basic_ifstream for char.
There is also wifstream, a typedef that specializes basic_ifstream to read wchar_t double-wide characters. For more information, see wifstream.
typedef basic_ifstream<char, char_traits<char>> ifstream;
Remarks
The type is a synonym for class template basic_ifstream, specialized for elements of type char with default character traits. An example is
using namespace std;
ifstream infile("existingtextfile.txt");
if (!infile.bad())
{
// Dump the contents of the file to cout.
cout << infile.rdbuf();infile.close();
}
ofstream
A type basic_ofstream specialized on char template parameters.
typedef basic_ofstream<char, char_traits<char>> ofstream;
Remarks
The type is a synonym for class template basic_ofstream, specialized for elements of type char with default character traits.
wfstream
A type basic_fstream specialized on wchar_t template parameters.
typedef basic_fstream<wchar_t, char_traits<wchar_t>> wfstream;
Remarks
The type is a synonym for class template basic_fstream, specialized for elements of type wchar_t with default character traits.
wifstream
A type basic_ifstream specialized on wchar_t template parameters.
typedef basic_ifstream<wchar_t, char_traits<wchar_t>> wifstream;
Remarks
The type is a synonym for class template basic_ifstream, specialized for elements of type wchar_t with default character traits.
wofstream
A type basic_ofstream specialized on wchar_t template parameters.
typedef basic_ofstream<wchar_t, char_traits<wchar_t>> wofstream;
Remarks
The type is a synonym for class template basic_ofstream, specialized for elements of type wchar_t with default character traits.
wfilebuf
A type basic_filebuf specialized on wchar_t template parameters.
typedef basic_filebuf<wchar_t, char_traits<wchar_t>> wfilebuf;
Remarks
The type is a synonym for class template basic_filebuf, specialized for elements of type wchar_t with default character traits.