GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::basic_ios::basic_ios(3) C++ Standard Libary std::basic_ios::basic_ios(3)

std::basic_ios::basic_ios - std::basic_ios::basic_ios


protected: (1)
basic_ios();
public: (2)
explicit basic_ios( std::basic_streambuf<CharT,Traits>* sb );
private: (until C++11)
basic_ios(const basic_ios&); (3)
public: (since C++11)
basic_ios(const basic_ios& ) = delete;


Constructs new basic_ios object.


1) Default constructor. The internal state is not initialized. init() must be called
before the first use of the object or before destructor, otherwise the behavior is
undefined.
2) Initializes the internal state by calling init(sb). The associated stream buffer
is set to sb.
3) The copy constructor was declared private: and not defined until C++11 and is
declared as deleted in C++11: I/O streams are not CopyConstructible.


sb - stream buffer to associate to

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.