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::setstate(3) C++ Standard Libary std::basic_ios::setstate(3)

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


void setstate( iostate state );


Sets the stream error flags state in addition to currently set flags. Essentially
calls clear(rdstate() | state). May throw an exception.


stream error state flags to set. It can be a combination of the following
constants:


state - Constant Explanation
goodbit no error
badbit irrecoverable stream error
failbit input/output operation failed (formatting or extraction error)
eofbit associated input sequence has reached end-of-file


(none)

// Run this code


#include <iostream>
#include <sstream>


int main()
{
std::ostringstream stream;


if (!stream.fail()) {
std::cout << "stream is not fail\n";
}


stream.setstate(std::ios_base::failbit);


if (stream.fail()) {
std::cout << "now stream is fail\n";
}


if (!stream.good()) {
std::cout << "and stream is not good\n";
}
}


stream is not fail
now stream is fail
and stream is not good


rdstate returns state flags
(public member function)
clear modifies state flags
(public member function)

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.