友情提示:如果本网页打开太慢或显示不完整,请尝试鼠标右键“刷新”本网页!
第三电子书 返回本书目录 加入书签 我的书架 我的书签 TXT全本下载 『收藏到我的浏览器』

C语言实例教程(PDF格式)-第69部分

快捷操作: 按键盘上方向键 ← 或 → 可快速上下翻页 按键盘上的 Enter 键可回到本书目录页 按键盘上方向键 ↑ 可回到本页顶部! 如果本书没有阅读完,想下次继续接着阅读,可使用上方 "收藏到我的浏览器" 功能 和 "加入书签" 功能!




dialog。m_radio= 1;  



dialog。m_index= 0;  



int result = dialog。DoModal();  



if (result == IDOK)  



{  



if (dialog。m_radio==0)  


…………………………………………………………Page 598……………………………………………………………

array。RemoveAll();  



else  



array。RemoveAt(dialog。m_index);  



Invalidate();  



}  



CView::OnRButtonDown(nFlags; point);  



}  



在这个函数中,当显示完对话框后,程序检查对话框的成员变量 

m_removeAll。如果这个值为真意味着用户希望删除数组中所有的元 

素。这种情况下,程序调用数组类的成员函数RemoveAll 。否 

则,程序将调用RemoveAt 删除指定位置处的数组元素。最后调用 

Invalidate 函数刷新数据显示。  



下面将介绍对话框类CArrayAddDlg,按照下面的步骤创建这个对话框 

类。  



1。  创建如图10。1所示的对话框,3个单选按钮的ID分别为IDC_ADD0, 

IDC_ADD1,IDC_ADD2。  



                                                



                         图10。 1 添加元素对话框  



2。           在ClassWizard中为两个文本框映射两个UINT类型的变量 

m_index,m_value。  



3。 给该对话框添加一个UINT类型的成员变量m_radio。  



4。  为WM_INITDIALOG添加函数OnInitDialog(),在其中设置单选按钮 

的初始状态。  



BOOL CArrayAddDlg::OnInitDialog()   


…………………………………………………………Page 599……………………………………………………………

{  



CDialog::OnInitDialog();  



// TODO: Add extra initialization here  



((CButton*)GetDlgItem(IDC_ADD0))…》SetCheck(1);  



return TRUE; // return TRUE unless you set the focus to a control  



// EXCEPTION: OCX Property Pages should return FALSE  



}  



5。 添加三个函数用以响应用户单击单选按钮。  



void CArrayAddDlg::OnAdd0()   



{  



// TODO: Add your control notification handler code here  



GetDlgItem(IDC_INDEX)…》EnableWindow(true);  



}  



void CArrayAddDlg::OnAdd1()   



{  



// TODO: Add your control notification handler code here  



GetDlgItem(IDC_INDEX)…》EnableWindow(true);  



}  



void CArrayAddDlg::OnAdd2()   



{  



// TODO: Add your control notification handler code here  



GetDlgItem(IDC_INDEX)…》EnableWindow(false);  



}  



为了确定用户选择了哪一个单选按钮,重载CDialog::OnOK()。  



void CArrayAddDlg::OnOK()   



{  


…………………………………………………………Page 600……………………………………………………………

// TODO: Add extra validation here  



UINT nRadio=GetCheckedRadioButton(IDC_ADD0;IDC_ADD2);  



switch(nRadio)  



{  



case IDC_ADD0:  



m_radio=0;  



break;  



case IDC_ADD1:  



m_radio=1;  



break;  



case IDC_ADD2:  



m_radio=2;  



break;  



default:  



break;  



}  



CDialog::OnOK();  



}  



      按照下面的步骤创建另一个对话框类CRemoveDlg。  



1。                 创建如图10。2所示的对话框,两个单选按钮的ID分别是 

IDC_REMOVE0和IDC_REMOVE1。  



                                                              



                               图10。 2 删除数组元素对话框  


…………………………………………………………Page 601……………………………………………………………

2。 在ClassWizard中为文本框映射一个UINT类型的变量m_index。  



3。 给该对话框添加一个UINT类型的成员变量m_radio。  



4。  为WM_INITDIALOG添加函数OnInitDialog(),在其中设置单选按钮 

的初始状态。  



BOOL CArrayRemoveDlg::OnInitDialog()   



{  



CDialog::OnInitDialog();  



// TODO: Add extra initialization here  



((CButton*)GetDlgItem(IDC_REMOVE1))…》SetCheck(1);  



return TRUE; // return TRUE unless you set the focus to a control  



// EXCEPTION: OCX Property Pages should return FALSE  



}  



5.添加两个函数用以响应用户单击单选按钮。  



void CArrayRemoveDlg::OnRemove0()   



{  



// TODO: Add your control notification handler code here  



GetDlgItem(IDC_INDEX)…》EnableWindow(false);  



}  



void CArrayRemoveDlg::OnRemove1()   



{  



// TODO: Add your control notification handler code here  



GetDlgItem(IDC_INDEX)…》EnableWindow(true);  



}  



6。 为了确定用户选择了哪一个单选按钮,重载CDialog::OnOK()。  



void CArrayRemoveDlg::OnOK()   



{  


…………………………………………………………Page 602……………………………………………………………

// TODO: Add extra validation here  



UINT nRadio=GetCheckedRadioButton(IDC_REMOVE0;IDC_REMOVE1);  



switch(nRadio)  



{  



case IDC_REMOVE0:  



m_radio=0;  



break;  



case IDC_REMOVE1:  



m_radio=1;  



break;  



default:  



break;  



}  



CDialog::OnOK();  



}  



现在编译并运行这个程序,首先在窗口中显示一个有十个元素的数 

组,如图10。3所示。单击左键弹出如图10。1所示的对话框,你可以选 

择三种数组操作:设置、插入和添加。单击右键弹出如图10。2所示的 

对话框,你可以选择两种删除操作:删除全部元素和删除指定元素。  



                                                                



                              图10。 3 程序运行初始窗口  



    


…………………………………………………………Page 603……………………………………………………………

                   第二节 列表类  



列表类象是有特殊功能的数组。列表的元素被称为节点。列表使用指 

针来连结它的节点。如果你希望快速的插入和删除数组元素,列表类 

是一个比较好的选择。但是在列表中查找一个元素要比在数组中慢, 

因为列表需要按照指针顺序从一个节点到另外一个节点。  



通常我们称列表中第一个节点为列表的头,列表中最后一个节点是列 

表的尾。  



列表类有以下成员函数:  



Clist   



Clist类的构造函数,其中的参数指定分配内存的基本单元。  



GetHead( )  



获得列表的第一个元素的值。  



GetTail( )  



获得列表的最后一个元素的值。  



RemoveHead( )  



删除列表中第一个元素  



RemoveTail( )  



删除列表中最后一个元素。  



AddHead   



在列表的头部添加一个节点,使这个节点成为列表的新的头。  



AddTail   



在列表的尾部添加一个节点,使这个节点成为列表的新的尾。  



RemoveAll()  



删除节点中所有的元素。  


…………………………………………………………Page 604……………………………………………………………

GetHeadPosition( )  



获得列表的头节点的位置。  



GetTailPosition( )  



获得列表中尾节点的位置。  



GetNext()  



获得指定位置下一个节点处的值。  



GetPrev()  



获得指定位置上一个节点处的值。  



GetAt()  



获得指定位置处节点的值。  



SetAt()  



设置指定位置处节点的值。  



RemoveAt()  



删除指定位置处的节点。  



InsertBefore()  



在指定位置的前面插入一个节点。  



InsertAfter()  



在指定位置的后面插入一个节点。  



Find()  



按照列表顺序搜索给定的对象指针,返回一个POSITION类型的量。  



FindIndex()  



按照列表顺序搜索指定的下标。  



GetCount()  


…………………………………………………………Page 605……………………………………………………………

获得列表中包含的节点个数。  



IsEmpty()  



检查一个列表是否不含有任何节点。  



下面的程序将允许用户添加和删除节点,按照以下步骤进行:  



1。 使用MFC AppWizard创建一个单文档应用程序List。  



2。   添加一个对话框类CAddStudentDlg,其对应的对话框如图10。4所 

示。  



                                          



                       图10。 4 添加节点对话框  



3。 为两个文本框映射两个变量m_name,m_score。  



4。  添加一个对话框类CRemoveStudentDlg,其对应的对话框如图10。5 

所示。两个单选按钮的ID为IDC_REMOVE0和IDC_REMOVE1。  



                                          



                       图10。 5 删除节点对话框  



5。 为对话框类添加一个UINT类型的成员变量m_radio。  



6。 在OnInitDialog()函数中设置单选按钮的初始状态。  



BOOL CRemoveStudentDlg::OnInitDialog()   



{  



CDialog::OnInitDialog();  


…………………………………………………………Page 606……………………………………………………………

// TODO: Add extra initialization here  



((CButton*)GetDlgItem(IDC_REMOVE0))…》SetCheck(1);  



return TRUE; // return TRUE unless you set the focus to a control  



// EXCEPTION: OCX Property Pages should return FALSE  



}  



7。   为了知道用户选择了哪一个单选按钮,在OnOk()函数中添加下面 

的代码。  



void CRemoveStudentDlg::OnOK()   



{  



// TODO: Add extra validation here  



UINT nRadio=GetCheckedRadioButton(IDC_REMOVE0;IDC_REMOVE1);  



switch(nRadio)  



{  



case IDC_REMOVE0:  



m_radio=0;  



break;  



case IDC_REMOVE1:  



m_radio=1;  



break;  



default:  



break;  



}  



CDialog::OnOK();  



}  



8。  在ListView。h中CListView类的声明之前添加如下代码,用来定义 

一个结构体CStudent,包含两个变量m_name和m_score,分别用于存 

放学生的姓名和成绩。  


…………………………………………………………Page 607……………………………………………………………

struct CStudent  



{  



CString m_name;  



int m_score;  



};  



9。 为ClistView添加一个类型为CptrList的成员变量m_list。  



10。 在ListView。cpp中添加下列语句:  



#include 〃AddStudentDlg。h〃  



#include 〃RemoveStudentDlg。h〃  



11。  当用户单击左键后,弹出如图10。4所示的对话框,可以添加一个 

节点。对应的OnLButtonDown 函数代码如下:  



void CMyListView::OnLButtonDown(UINT nFlags; CPoint point)   



{  



// TODO: Add your message handler code here and/or call default  



CAddStudentDlg dialog;  



dialog。m_name = 〃〃;  



dialog。m_score = 0 ;  



// Display the dialog box。  



int result = dialog。DoModal();  



if (result == IDOK)  



{  



// Create and initialize the new node。  



CStudent* m_pStudent = new CStudent;  



m_pStudent…》m_name = dialog。m_name;  



m_pStudent…》m_score = dialog。m_score;  



// Add the node to the list。  


…………………………………………………………Page 608……………………………………………………………

m_list。AddTail(m_pStudent);  



// Repaint the window。  



Invalidate();  



}  



CView::OnLButtonDown(nFlags; point);  



}  



12。  当用户单击右键后,弹出如图10。5所示的对话框,可以删除一个 

节点。对应的OnRButtonDown 函数代码如下:  



void CMyListView::OnRButtonDown(UINT nFlags; CPoint point)   



{  



// TODO: Add your message handler code here and/or call default  



CRemoveStudentDlg dialog;  



dialog。m_radio = 0;  



// Display the dialog box。  



int result = dialog。DoModal();  



// If the user clicked the OK button。。。  



if (result == IDOK)  



{  



CStudent* m_pStudent=new CStudent;  



// Make sure the list isn't empty。  



if (m_list。IsEmpty())  



MessageBox(〃节点已经全部删除!〃);  



else  



{  



// Remove the specified node。  



if (dialog。m_radio == 0)  


…………………………………………………………Page 609……………………………………………………………

m_pStudent = (CStudent*)m_list。RemoveHead();  



else  



m_pStudent = (CStudent*)m_list。RemoveTail();  



// Delete the node object and repaint the window。  



delete m_pStudent;  



Invalidate();  



}  



}  



CView::OnRButtonDown(nFlags; point);  



}  



13。 最后设置OnDraw 函数用来响应Invalidate()。  



void CMyListView::OnDraw(CDC* pDC)  



 {  



CListDoc* pDoc = GetDocument();  



ASSERT_VALID(pDoc);  



// TODO: add draw code for native data here  



TEXTMETRIC textMetric;  



pDC…》GetTextMetrics(&textMetric)
返回目录 上一页 下一页 回到顶部 1 1
快捷操作: 按键盘上方向键 ← 或 → 可快速上下翻页 按键盘上的 Enter 键可回到本书目录页 按键盘上方向键 ↑ 可回到本页顶部!
温馨提示: 温看小说的同时发表评论,说出自己的看法和其它小伙伴们分享也不错哦!发表书评还可以获得积分和经验奖励,认真写原创书评 被采纳为精评可以获得大量金币、积分和经验奖励哦!