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
showmanyc
受保護的虛成員函式
<fstream>
std::
filebuf
::showmanyc
streamsize showmanyc();
獲取可用字元數
返回與關聯檔案相關的可用字元數估算值。
此函式預計返回零(不提供任何資訊),但庫實現可能會提供有關受保護成員函式
underflow
和
uflow
未來呼叫的可能行為的資訊。
返回值
描述
underflow
和
uflow
的預期行為
>0
已知可用字元數
連續呼叫將成功提取字元,直到提取的字元數至少與返回的值一樣多。
0
無資訊
後續呼叫可能會檢索更多字元或返回
EOF
。
-1
序列不可用
後續呼叫將失敗(可能丟擲異常或“立即”返回)。
此虛成員函式覆蓋了從
streambuf::showmanyc
繼承的成員,當“讀指標”(
gptr
) 上沒有可用的讀取位置時,由成員
in_avail
呼叫。
引數
無
返回值
返回零(如果不提供資訊)。
庫實現可以返回不同的值來提供額外資訊。
streamsize
是一個帶符號整型。
資料競爭
未指定。
異常安全
基本保證:
如果丟擲異常,*檔案流緩衝區*處於有效狀態。
另見
filebuf::underflow
在下溢時獲取字元
(保護虛成員函式)
filebuf::uflow
在上溢時獲取字元並前進位置
(受保護的虛成員函式)
streambuf::showmanyc
獲取可用字元數
(保護虛成員函式)