溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

CArchive串行化操作

發(fā)布時(shí)間:2020-06-29 22:14:27 來源:網(wǎng)絡(luò) 閱讀:792 作者:Chinayu2014 欄目:編程語言

串行化保存數(shù)據(jù)

	//創(chuàng)建文件  
	CFile file(_T("1.txt"),CFile::modeCreate | CFile::modeWrite);  
	//串行化,存儲(chǔ)  
	CArchive ar(&file,CArchive::store);  
	//存儲(chǔ)數(shù)據(jù)  
	int   i = 0x31;  
	char ch = 'A';  
	float f = 1.3f;  
	CString str(_T("chinayu@qq.com"));  
	//寫入串行化  
	ar<<i<<ch<<f<<str;

串行化讀出數(shù)據(jù)

//打開文件  
CFile file("1.txt",CFile::modeRead);  
//加載流  
CArchive ar(&file,CArchive::load);  
//接收變量  
int i;  
char ch;  
float f;  
  
CString str;  
CString strresult;  
//提取數(shù)據(jù)給變量  
ar>>i>>ch>>f>>str;  
strresult.Format("%d,%c,%f,%s",i,ch,f,str);//轉(zhuǎn)化格式  
AfxMessageBox(strresult);


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI