Difference between revisions of "cpp/io/ios base/openmode"
From cppreference.com
(Undo revision 90752 by 113.88.81.69 (talk)) |
m (Text replace - "{{concept" to "{{named req") |
||
Line 15: | Line 15: | ||
{{dcl end}} | {{dcl end}} | ||
− | Specifies available file open flags. It is a {{ | + | Specifies available file open flags. It is a {{named req|BitmaskType}}, the following constants are defined: |
{{cpp/io/ios_base/openmode consts}} | {{cpp/io/ios_base/openmode consts}} | ||
Revision as of 14:27, 15 June 2018
typedef /*implementation defined*/ openmode; |
||
static constexpr openmode app = /*implementation defined*/ static constexpr openmode binary = /*implementation defined*/ |
||
Specifies available file open flags. It is a BitmaskType, the following constants are defined:
Constant | Explanation |
app | seek to the end of stream before each write |
binary | open in binary mode |
in | open for reading |
out | open for writing |
trunc | discard the contents of the stream when opening |
ate | seek to the end of stream immediately after open |
noreplace (C++23) | open in exclusive mode |
Example
This section is incomplete Reason: no example |
See also
opens a file and configures it as the associated character sequence (public member function of std::basic_filebuf<CharT,Traits> )
| |
constructs a basic_stringbuf object (public member function of std::basic_stringbuf<CharT,Traits,Allocator> )
|