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