C++中的ios类的clear()方法用于通过设置来更改指定标志的当前状态。因此,此函数更改此流的内部状态。
句法:
void clear(iostate state)
参数:此方法接受iostate作为参数,它是要在此流中设置的标志位。它可以是goodbit,failbit,eofbit或badbit。
返回值:此方法不返回任何内容。
范例1:
// C++ code to demonstrate
// the working of clear() function
#include
using namespace std;
int main()
{
// Stream
stringstream ss;
// Print the result
cout << "is eofbit set: "
<< ss.eof() << endl;
// Using clear() function
ss.clear(ss.eofbit);
cout << "clear() used to set eofbit "
<< endl;
// Print the result
cout << "is eofbit set: "
<< ss.eof() << endl;
return 0;
}
输出:
is eofbit set: 0
clear() used to set eofbit
is eofbit set: 1
范例2:
// C++ code to demonstrate
// the working of clear() function
#include
using namespace std;
int main()
{
// Stream
stringstream ss;
// Print the result
cout << "is failbit set: "
<< ss.fail() << endl;
// Using clear() function
ss.clear(ss.failbit);
cout << "clear() used to set failbit "
<< endl;
// Print the result
cout << "is failbit set: "
<< ss.fail() << endl;
return 0;
}
输出:
is failbit set: 0
clear() used to set failbit
is failbit set: 1
参考: hhttp://www.cplusplus.com/reference/ios/ios/clear/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。