Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::basic_streambuf<CharT,Traits>::eback, gptr, egptr

      From cppreference.com
      <cpp‎ |io‎ |basic streambuf
       
       
       
      std::basic_streambuf
       
      char_type* eback()const;
      (1)
      char_type* gptr()const;
      (2)
      char_type* egptr()const;
      (3)

      Returns pointers defining the get area.

      1) Returns the pointer to the beginning of the get area.

      2) Returns the pointer to the current character (get pointer) in the get area.

      3) Returns the pointer one past the end of the get area.

      Contents

      [edit]Parameters

      (none)

      [edit]Return value

      1) The pointer to the beginning of the get area.

      2) The pointer to the current character (get pointer) in the get area.

      3) The pointer one past the end of the get area.

      [edit]Notes

      While the names "gptr" and "egptr" refer to the get area, the name "eback" refers to the end of the putback area: stepping backwards fromgptr, characters can be put back untileback.

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      returns a pointer to the beginning, current character and the end of the put area
      (protected member function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/io/basic_streambuf/gptr&oldid=157273"

      [8]ページ先頭

      ©2009-2025 Movatter.jp