VC CArchiveクラス使用

663 ワード

CFile file("D:\\1.txt",CFile::modeCreate | CFile::modeWrite);
 CArchive ar(&file,CArchive::store);
 int i=4;
 char ch='a';
 float f=1.3f;
 CString str("hello everyone");
 ar<<i<<ch<<f<<str;//        1.txt
   :cout<<i<<ch<<f<<str       
CFile file("D:\\1.txt", CFile::modeRead); //     read
 CArchive ar(&file,CArchive::load); // store    load
 int i;
 char ch;
 float f;
 CString str;
 ar>>i>>ch>>f>>str; // <<    >>  ,  ar    cin   。