• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    function
    <streambuf>

    std::basic_streambuf::egptr

    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;  // 末尾から逆算して先頭のポインタにアクセス
    }
    

    出力

    A
    

    バージョン

    言語

    • C++98

    参照