【例29】测试文件的几个状态位。 #include <iostream> #include <fstream> using namespace std void showState( fstream &) void main() int num=10 fstream testFile( stuff. dat", ios: out ) if( testFile. fail) i cou<"打开文件失败!ln exit( 0); cout<<"向文件中写数据!m;29cp 2-9. cpp【例2-9】测试文件的几个状态位。 #include <iostream> #include <fstream> using namespace std; void showState( fstream & ); void main( ) { int num= 10 ; fstream testFile("stuff.dat", ios::out ); if( testFile.fail( )) { cout << "打开文件失败! \n" ; exit( 0 ); } cout << "向文件中写数据! \n" ; 2-9.cpp