The clear() method of ios class in C++ is used to change the current state of the specified flag by setting it. Hence this function changes the internal state of this stream.
Syntax:
void clear(iostate state)
Parameters: This method accepts the iostate as parameter which is the flag bit to be set in this stream. It can be goodbit, failbit, eofbit or badbit.
Return Value: This method do not return anything.
Example 1:
#include <bits/stdc++.h>
using namespace std;
int main()
{
stringstream ss;
cout << "is failbit set: "
<< ss.fail() << endl;
ss.clear(ss.failbit);
cout << "clear() used to set failbit "
<< endl;
cout << "is failbit set: "
<< ss.fail() << endl;
return 0;
}
|
Output:
is eofbit set: 0
clear() used to set eofbit
is eofbit set: 1
Example 2:
Output:
is failbit set: 0
clear() used to set failbit
is failbit set: 1
Reference: hhttp://www.cplusplus.com/reference/ios/ios/clear/
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
02 Sep, 2019
Like Article
Save Article