The operator!() method of ios class in C++ is used to any error flag of this stream is set. This includes the failbit or the badbit.
Syntax:
bool operator!() const;
Parameters: This method does not accept any parameter.
Return Value: This method returns true if any error bit is set of this stream, else false.
Example 1:
#include <bits/stdc++.h>
using namespace std;
int main()
{
stringstream ss;
if (!ss) {
cout << "Error bit is set.\n" ;
}
else {
cout << "No error bit is set.\n" ;
}
return 0;
}
|
Output:
No error bit is set.
Example 2:
#include <bits/stdc++.h>
using namespace std;
int main()
{
stringstream ss;
ss.clear(ss.failbit);
if (!ss) {
cout << "Error bit is set.\n" ;
}
else {
cout << "No error bit is set.\n" ;
}
return 0;
}
|
Output:
Error bit is set.
Reference: hhttp://www.cplusplus.com/reference/ios/ios/operator!/
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