MFC 类库
1.CWnd
1.1.UpdateData()
作用:
UpdateData() and Updatedata(TRUE) are the same.
UpdateData(TRUE) is used to copy the contents of the controls into the associated variables.
UpdateData(FALSE) is used to put the values in the variables to the associated controls.
1.2CString
1.2.1Format 与printf()类似
void Format( LPCTSTR lpszFormat, ... ); void Format( UINT nFormatID, ... );
例:
CString str = "Some Data";
str.Format("%s%d", str, 123); //%s 字符串,%d有符号十进制,%u无符号十进制,%o八进制
1.3 MFC集合类 : http://msdn.microsoft.com/en-us/library/fw2702d6(v=vs.60).aspx
CArray: template< class TYPE, class ARG_TYPE > class CArray : public CObject
注意:其可以自动分配和删除内存
(1)Add(i):返回添加后元素的index
// example for CArray::Add ---引用自msdn CArray<CPoint,CPoint> ptArray; CPoint pt(10,20); ptArray.Add(pt); // Element 0 ptArray.Add(CPoint(30,40)); // Element 1
(2)Get(i)给出给定索引值的数据
(3)GetSize()获得元素的数量
(4)IsEmpty()判断是否为空
(5)Insert()在指定位置插入
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥