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()在指定位置插入

 

 

 

 



 

 

  

 

posted @   Xiaodigua  阅读(262)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示