資源描述:
《Visual C++ 6.0實(shí)例教程 第7章》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、第7章MFC通用類(lèi)內(nèi)容摘要:1.MFC中數(shù)組類(lèi)的使用方法2.MFC中鏈表類(lèi)的使用方法3.MFC中字符串類(lèi)CString的使用方法4.MFC中日期和時(shí)間類(lèi)的使用方法5.MFC中CPoint類(lèi)、CSize類(lèi)和CRect類(lèi)的使用方法返回目錄7.1數(shù)組類(lèi)學(xué)習(xí)目標(biāo)1.了解MFC中的數(shù)組類(lèi)及其常用成員函數(shù)。2.利用MFC中的數(shù)組類(lèi)處理數(shù)據(jù)。7.1返回第7章CByteArray:CDWordArray:CPtrArray:CUIntArray:CWordArray:CStringArray:7.1MFC的數(shù)組類(lèi)1.intAd
2、d(ARG_TYPEnewElement);throw(CMemoryException);2.TYPE&ElementAt(intnIndex);3.voidFreeExtra();4.TYPEGetAt(intnIndex)const5.intGetSize()const;6.intGetUpperBound()const;7.(1)voidInsertAt(intnIndex,ARG_TYPEnewElement,intnCount=1);throw(CMemoryException);(2)voidIn
3、sertAt(intnStartIndex,CArray*pNewArray);throw(CMemoryException);8.voidRemoveAll();9.voidSetAt(intnIndex,ARG_TYPEnewElement);10.voidSetAtGrow(intnIndex,ARG_TYPEnewElement);throw(CMemoryException);11.voidSetSize(intnNewSize,intnGrowBy=-1);throw(CMemoryExceptio
4、n);7.1MFC數(shù)組類(lèi)的常用成員函數(shù)例題(1--2)7.11.創(chuàng)建一個(gè)基于單文檔的應(yīng)用程序(Array)2.編輯對(duì)話框資源IDD_DIALOG_ADDIDC_STATICGroupBoxCaption:設(shè)置添加操作IDC_RADIO_SETRadioButtonCaption:設(shè)置,Group:選中IDC_RADIO_ADDRadioButtonCaption:添加IDC_RADIO_INSERTRadioButtonCaption:插入IDC_STATICStaticTextCaption:數(shù)組元素下標(biāo)ID
5、C_EDIT_INDEXEditBoxIDC_STATICStaticTextCaption:設(shè)置值IDC_EDIT_VALUEEditBoxIDOKButtonCaption:確定IDCANCELButtonCaption:取消關(guān)聯(lián)變量:IDC_RADIO_SETintm_nRidioIDC_EDIT_INDEXintm_nIndexIDC_EDIT_VALUECStringm_strValue例題(2)7.1(2)IDD_DIALOG_ADDIDC_STATICGroupBoxCaption:設(shè)置添加操作I
6、DC_RADIO_ALLRadioButtonCaption:全部元素,Group:選中IDC_RADIO_ELEMENTRadioButtonCaption:指定元素IDC_STATICStaticTextCaption:數(shù)組下標(biāo)IDC_EDIT_VALUEEditBoxIDOKButtonCaption:確定IDCANCELButtonCaption:取消關(guān)聯(lián)變量:IDC_RADIO_ALLintm_nRidioIDC_EDIT_VALUEintm_nIndex例題(3)7.13.為對(duì)話框IDD_DIALO
7、G_ADD添加響應(yīng)函數(shù)BOOLCDlgAdd::OnInitDialog(){CDialog::OnInitDialog();//TODO:Addextrainitializationhere((CButton*)GetDlgItem(IDC_RADIO_SET))->SetCheck(1);returnTRUE;//returnTRUEunlessyousetthefocustoacontrol//EXCEPTION:OCXPropertyPagesshouldreturnFALSE}voidCDlgAdd:
8、:OnRadioSet(){//TODO:AddyourcontrolnotificationhandlercodehereGetDlgItem(IDC_EDIT_INDEX)->EnableWindow(true);}例題(3)7.1voidCDlgAdd::OnRadioAdd(){//TODO:AddyourcontrolnotificationhandlercodehereGe