cplusplus
.com
教程
參考
文章
論壇
C++
教程
參考
文章
論壇
參考
C 庫
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
輸入/輸出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多執行緒
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<fstream>
類模板
basic_filebuf
basic_fstream
basic_ifstream
basic_ofstream
類
filebuf
fstream
ifstream
、ofstream
wfilebuf
wfstream
wifstream
、wofstream
filebuf
filebuf::~filebuf
filebuf::filebuf
公有成員
filebuf::close
filebuf::is_open
filebuf::open
C++11
filebuf::operator=
C++11
filebuf::swap
受保護的虛成員
filebuf::imbue
filebuf::overflow
filebuf::pbackfail
filebuf::seekoff
filebuf::seekpos
filebuf::setbuf
filebuf::showmanyc
filebuf::sync
filebuf::uflow
filebuf::underflow
非成員過載
C++11
swap (filebuf)
參考
<fstream>
filebuf
pbackfail
受保護的虛成員函式
<fstream>
std::
filebuf
::pbackfail
int pbackfail (int c = EOF);
將字元放回到備份區,以處理下溢
將當前輸入位置向後移動到前一個字元,並且,如果支援,將
c
作為下一個要讀取的字元可用。
如果實現不支援寫入回退位置,則
c
必須匹配回退位置的字元,或者為檔案尾(
end-of-file
)值(
EOF
)。否則,該函式失敗。
如果
get pointer
(
gptr
)在呼叫前指向字元序列的開頭,則函式可能根據庫實現而失敗,或者提供額外的回退位置併成功。
在該函式中,關聯檔案的內容絕不會被修改。
失敗時,該函式返回檔案尾(
end-of-file
)值(
EOF
),而不改變
get pointer
(
gptr
)。
當
get pointer
(
gptr
)沒有可用回退位置,或者要放回的字元與緩衝區中的字元不匹配時,由
streambuf
的公共成員函式(如
sungetc
和
sputbackc
)呼叫此虛擬函式。
此成員函式重寫了繼承的虛成員
streambuf::pbackfail
。
引數
c
要放回的字元,或者檔案尾(
end-of-file
)值(
EOF
)以保持回退位置的字元值。
返回值
成功時,返回
traits_type::not_eof
(c)
。
失敗時,該函式返回檔案尾(
end-of-file
)值(
EOF
)。
資料競爭
修改
filebuf
物件。
同時訪問同一個
檔案流緩衝區
物件可能導致資料爭用。
異常安全
基本保證:
如果丟擲異常,*檔案流緩衝區*處於有效狀態。
另見
filebuf::underflow
在下溢時獲取字元
(保護虛成員函式)
streambuf::pbackfail
在回退下溢的情況下放回字元
(保護虛成員函式)