C++中的ios类的rdstate()方法用于读取此流的内部状态。
用法:
iostate rdstate() const;
参数:此方法不接受任何参数。
返回值:此方法返回此流的当前内部状态。
示例1:
// C++ code to demonstrate
// the working of rdstate() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Stream
stringstream ss;
// Using rdstate() function
cout << "stream rdstate: "
<< ss.rdstate() << endl;
return 0;
}
输出:
stream rdstate: 0
示例2:
// C++ code to demonstrate
// the working of rdstate() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Stream
stringstream ss;
ss.clear(ss.failbit);
// Using rdstate() function
cout << "stream rdstate: "
<< ss.rdstate() << endl;
return 0;
}
输出:
stream rdstate: 4
参考: hhttp://www.cplusplus.com/reference/ios/ios/rdstate/
相关用法
- C++ ios eof()用法及代码示例
- C++ ios bad()用法及代码示例
- C++ wcslen()用法及代码示例
- C++ norm()用法及代码示例
- C++ wcsspn()用法及代码示例
- C++ fill()用法及代码示例
- C++ wcscpy()用法及代码示例
- C++ wcscmp()用法及代码示例
- C++ conj()用法及代码示例
- C++ ios operator()用法及代码示例
- C++ quick_exit()用法及代码示例
- C++ ios clear()用法及代码示例
- C++ fill_n()用法及代码示例
注:本文由纯净天空筛选整理自guptayashgupta53大神的英文原创作品 ios rdstate() function in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。