std::basic_streambuf<CharT,Traits>::pubseekpos, std::basic_streambuf<CharT,Traits>::seekpos
From cppreference.com
< cpp | io | basic streambuf
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Input/output library
Print functions (C++23)
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
Public member functions
Locales
Positioning
basic_streambuf::pubseekpos
Get area
Put area
Putback
Protected member functions
(C++11)
(C++11)
Locales
Positioning
basic_streambuf::seekpos
Get area
Put area
Putback
pos_type pubseekpos( pos_type pos,
std::ios_base::openmode which = std::ios_base::in | std::ios_base::out );
(1)
std::ios_base::openmode which = std::ios_base::in | std::ios_base::out );
protected:
(2)
virtual pos_type seekpos( pos_type pos,
Sets the position indicator of the input and/or output sequence to an absolute position.
1) Calls seekpos(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.
[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:
repositions the file position, using absolute addressing
(virtual protected member function of
repositions the next pointer in the input sequence, output sequence, or both using absolute addressing
(virtual protected member function of
Constant
Explanation
in
affect the input sequence
out
affect the output sequence
[edit] Return value
1) The return value of seekpos(pos, which).
2) The resulting absolute position as defined by the position indicator. The base class version returns pos_type(off_type(-1)).
[edit] Example
This section is incomplete
Reason: no example
Reason: no example
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 55 | C++98 | the base class version of seekpos returnedan undefined invalid stream position |
returns pos_type(off_type(-1)) |
[edit] See also
[virtual]
(virtual protected member function of
std::basic_filebuf<CharT,Traits>
) [edit]
[virtual]
(virtual protected member function of
std::basic_stringbuf<CharT,Traits,Allocator>
) [edit]