Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::basic_streambuf<CharT,Traits>::pubseekpos,std::basic_streambuf<CharT,Traits>::seekpos

      From cppreference.com
      <cpp‎ |io‎ |basic streambuf
       
       
       
      std::basic_streambuf
       
      pos_type pubseekpos( pos_type pos,
                           std::ios_base::openmode which=std::ios_base::in|std::ios_base::out);
      (1)
      protected:

      virtual pos_type seekpos( pos_type pos,

                               std::ios_base::openmode which=std::ios_base::in|std::ios_base::out);
      (2)

      Sets the position indicator of the input and/or output sequence to an absolute position.

      1) Callsseekpos(pos, which) of the most derived class.
      2) The base class version of this function has no effect. The derived classes may override this function to allow absolute positioning of the position indicator.

      Contents

      [edit]Parameters

      pos - absolute position to set the position indicator to
      which - defines which of the input and/or output sequences to affect. It can be one or a combination of the following constants:
      Constant Explanation
      in affect the input sequence
      out affect the output sequence

      [edit]Return value

      1) The return value ofseekpos(pos, which).
      2) The resulting absolute position as defined by the position indicator. The base class version returnspos_type(off_type(-1)).

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]Defect reports

      The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 55C++98the base class version ofseekpos returned
      an undefined invalid stream position
      returnspos_type(off_type(-1))

      [edit]See also

      invokesseekoff()
      (public member function)[edit]
      [virtual]
      repositions the file position, using absolute addressing
      (virtual protected member function ofstd::basic_filebuf<CharT,Traits>)[edit]
      [virtual]
      repositions the next pointer in the input sequence, output sequence, or both using absolute addressing
      (virtual protected member function ofstd::basic_stringbuf<CharT,Traits,Allocator>)[edit]
      [virtual]
      repositions the next pointer in the input sequence, output sequence, or both using absolute addressing
      (virtual protected member function ofstd::strstreambuf)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/io/basic_streambuf/pubseekpos&oldid=158562"

      [8]ページ先頭

      ©2009-2025 Movatter.jp