C++標準庫教學
C++ <fstream>
fstream::close()函數
fstream::isopen()函數
fstream::open()函數
ostream運算符=
fstream::rdbuf()函數
fstream::swap()函數
C++ <iomanip>
std::setiosflags()函數
std::resetiosflags()函數
std::setbases()函數
std::setfill()函數
std::setprecision()函數
std::setw()函數
std::get_money()函數
std::put_money()函數
std::get_time()函數
std::put_time()函數
C++ <basic_ios>
ios_base::event()函數
ios_base::event_callback()函數
ios_base::failure
ios_base::Init
basic_ios::setstate
basic_ios::openmode
ios_base::seekdir
basic_ios::basic_ios構造函數
basic_ios::basic_ios析構函數
ios::good()函數
ios_event::eof()函數
ios非運算符
ios::rdstate()函數
ios::clear()函數
ios::copyfmt()函數
ios::fill()函數
ios::exceptions()函數
ios::imbue()函數
ios::tie()函數
io::rdbuf()函數
ios::narrow()函數
ios::widen()函數
ios::init()函數
ios::move()函數
ios::swap()函數
ios::set_rdbuf()函數
std::fpos()函數
ios庫<ios>
ios_base::fmtflags
C++ <fstream>
此數據類型通常用來表示文件流,並且具有 stream
和 ifstream
的能力,也就是說它可以創建文件,向文件寫入信息和從文件讀取信息。
定義
下面是 std::fstream
的定義。
template<
class CharT,
class Traits = std::char_traits<CharT>>
class basic_fstream : public std::basic_iostream<CharT, Traits>
參數
-
charT
− 作爲成員char_type
的別名。 -
traits
- 作爲成員traits_type
的別名。
成員類型
以下成員類型可以用作參數或由成員函數返回類型。
成員類型
定義
char
字符類型
char_traits
traits_type
int
const value_type
int
int_type
streampos
pos_type
streamoff
off_type
的函數
下面是<fstream>
中所有方法的列表,成員函數 -
編號
描述和說明
1
fstream::close - 關閉當前與對象關聯的文件,將其與流分離。
2
fstream::is_open - 返回當前流是否與文件相關聯。
3
fstream::open - 打開由參數filename
標識的文件,將其與流對象相關聯。
4
fstream::operator= - 返回一個常量迭代器,它指向數組的開始。
5
fstream::rdbuf - 返回指向內部filebuf
對象的指針。
6
fstream::swap - 在 x
和 *this
之間交換所有內部數據。
非成員重載函數
編號
描述和說明
1
swap-free - 交換fstream
對象x
和y
的值。