std::basic_streambuf<CharT,Traits>:: sbumpc, std::basic_streambuf<CharT,Traits>:: stossc
From cppreference.net
<
cpp
|
io
|
basic streambuf
C++
Input/output library
| I/O manipulators | ||||
| Print functions (C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(C++20)
|
||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
| Synchronized Output | ||||
|
(C++20)
|
||||
| Types | ||||
| Error category interface | ||||
|
(C++11)
|
||||
|
(C++11)
|
std::basic_streambuf
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
int_type sbumpc
(
)
;
|
(1) | |
|
void
stossc
(
)
;
|
(2) |
(C++98で非推奨)
(C++17で削除) |
1文字を読み取り、入力シーケンスを1文字進めます。
2)
(1)
と同じですが、結果を破棄します。
目次 |
パラメータ
(なし)
戻り値
1)
get pointer
が指す文字の値、または読み取り位置が利用できない場合は
Traits
::
eof
(
)
。
例
|
このセクションは不完全です
理由: 例がありません |
関連項目
|
入力シーケンスから1文字を読み取り、シーケンスを進めない
(public member function) |
|
|
入力シーケンスを進めてから、再度進めずに1文字を読み取る
(public member function) |