C++中的ios類的operator()方法用於設置此流的任何錯誤標誌。這包括故障位或故障位。
用法:
operator void*() const;
參數:此方法不接受任何參數。
返回值:如果此流設置了任何錯誤位,則此方法返回空指針。
示例1:
// C++ code to demonstrate
// the working of operator() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Stream
stringstream ss;
// Using operator() function
if (ss) {
cout << "No error bit is set.\n";
}
else {
cout << "Error bit is set.\n";
}
return 0;
}
輸出:
No error bit is set.
示例2:
// C++ code to demonstrate
// the working of operator() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Stream
stringstream ss;
ss.clear(ss.failbit);
// Using operator() function
if (ss) {
cout << "No error bit is set.\n";
}
else {
cout << "Error bit is set.\n";
}
return 0;
}
輸出:
Error bit is set.
參考: hhttp://www.cplusplus.com/reference/ios/ios/operator/
相關用法
- C++ ios bad()用法及代碼示例
- C++ ios eof()用法及代碼示例
- C++ ios rdstate()用法及代碼示例
- C++ norm()用法及代碼示例
- C++ wcslen()用法及代碼示例
- C++ wcscpy()用法及代碼示例
- C++ wcsspn()用法及代碼示例
- C++ ios clear()用法及代碼示例
- C++ conj()用法及代碼示例
- C++ fill()用法及代碼示例
- C++ fill_n()用法及代碼示例
- C++ quick_exit()用法及代碼示例
注:本文由純淨天空篩選整理自guptayashgupta53大神的英文原創作品 ios operator() function in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。