1、1 Windows编程技术 MFC通用类 2 最简单的MFC类 CRect类CPoint类CSize类 3 CString类 概述创建字符串直接创建CStringcsText1 csText1 ABCD 连接创建CStringcsText1 AB csText2 CD csText3 csText3 csText1 csText2 4 CString类 操作CString字符CStringcsText ABCDE charc csText GetAt 1 取得对象内字符数组第二个元素 B csText SetAt 2 c 设置对象内字符数组第三个元素为 B c csText 4 取得对象内字符
2、数组第五个元素 E csText 0 c 错误 不能用 运算符对字符串赋值csText SetAt 0 c 设置对象内字符数组第一个元素为 E 操作CString缓存CStringcsText ABCDE char pStr csText GetBuffer 100 重新分配内存 长度变为100strcpy pStr 123456789 字符数组存入新串 123456789 csText ReleaseBuffer 释放多余内存 5 CString类 字符串的比较CStringcsText AB csText1 Compare AC csText1 AC 子串函数提取子串函数MidLeftRi
3、ghtSpanIncludingSpanExcluding查找子串函数FindReverseFindFindOneOf 6 CString类 字符串处理函数MakeUpperMakeLowerMakeReverseRemoveFormatCStringcsText floatx 10 5 csText Format x 0 2f x FormatVTrimLeftTrimRightFormatMessageGetLengthIsEmptyEmpty 7 集合类 头文件 afxtempl h 列表类CList特点建立列表CListMyList 查找 取得元素POSITIONpos NULL po
4、s为NULL代表从头开始intcount 0 count整型变量用来计数while pos MyList Find 100 pos 从列表头开始查找到结束count intx MyList GetAt pos 遍历列表POSITIONps MyList GetHeadPosition 取得列表头intx while ps 判断是否还存在元素 循环 x MyList GetNext ps 取得元素 并指向下一元素 8 集合类 插入元素POSITIONpos NULL pos MyList AddHead 1 在列表头插入整型元素 并返回在列表中位置pos MyList InsertAfter p
5、os 2 在pos位置后插入元素 并返回在列表中位置pos MyList AddTail 3 在列表尾插入整型元素 并返回在列表中位置pos MyList InsertBefore pos 4 在pos位置前插入元素 并返回在列表中位置 删除元素POSITIONpos MyList RemoveHead 删除列表头元素MyList RemoveTail 删除列表尾元素MyList RemoveAt pos 删除位置为pos的列表元素MyList RemoveAll 删除列表中所有元素修改元素POSITIONpos MyList SetAt pos 200 将pos处的元素值修改为20 9 集合
6、类 数组类CArray特点建立数组CArrayMyArray MyArray SetSize 100 查找 取得 修改元素for inti 0 i MyArray GetSize i if MyArray i 100 MyArray i 0 插入元素MyArray InsertAt 3 100 删除元素MyArray RemoveAt 3 10 集合类 映射类CMap特点建立数组CArrayMyMap 查找 取得 修改元素intx MyMap Lookup 1 x 插入 修改元素MyMap SetAt 1 100 删除元素MyArray RemoveKey 3 11 时间处理类 头文件 afx
7、disp h COleDateTime类特点建立COleDateTimetime 1999 9 13 13 30 0 COleDateTimetime COleDateTime GetCurrentTime 设置时间time SetDateTime 1999 9 13 13 30 0 取得时间time GetDayOfWeek 时间数据格式化CStrings1 time Format A B d Y CStrings2 time Format U 12 时间处理类 COleDateTimeSpan类特点建立CTimeSpantimespan1 0 11 13 13 COleDateTimeti
8、me1 1949 10 1 10 0 0 COleDateTimetime2 COleDateTime GetCurrentTime COleDateTimeSpantimespan2 time2 time1 取得时间间隔inttotalDays timespan GetDays 取得间隔天数inttotalHours int timespan GetTotalHours 取得间隔小时数inttotalMinutes int timespan GetTotalMinutes 取得间隔分钟数inttotalSeconds int timespan GetTotalSeconds 取得间隔秒数 13 异常处理类 三种异常处理分类C 标准异常Windows结构化异常MFC的异常处理宏异常的使用try 正常程序1throw异常 由于某种原因抛出异常 正常程序2 catch 异常 捕获异常 处理异常的程序 14 异常处理类 MFC异常处理类的使用CException类MFC异常处理类的使用try try块 正常程序 catch CException e 捕获异常 处理异常的程序e Delete 删除异常 MFC常用异常处理类CMemoryExceptionCFileExceptionCUserException