- streambuf[meta header]
- std[meta namespace]
- basic_streambuf[meta class]
- function[meta id-type]
namespace std {
template<class CharT, class Traits = char_traits<CharT>>
class basic_streambuf {
protected:
char_type* egptr() const;
……
};
}
入力部分列の終端へのポインタを返す。
入力部分列の終端へのポインタ。
#include <iostream>
#include <streambuf>
// streambufを継承したクラス
class dummy_buf : public std::streambuf {
char space_[10] = {'A', 'B', 'C'};
public:
dummy_buf(void) {
// 入力列に配列を設定
setg(space_, space_, space_ + 10);
}
char_type* egptr(void) const {
// ベースクラスのegptr()を呼ぶ
return std::streambuf::egptr();
}
};
int main(void) {
dummy_buf buf{};
std::cout << *(buf.egptr() - 10) << std::endl; // 末尾から逆算して先頭のポインタにアクセス
}
- std::streambuf::egptr[color ff0000]
A
- C++98