博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MFC 类库
阅读量:4949 次
发布时间:2019-06-11

本文共 891 字,大约阅读时间需要 2 分钟。

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集合类 :

   CArray:  template< class TYPE, class ARG_TYPE > class CArray : public CObject

注意:其可以自动分配和删除内存

   (1)Add(i):返回添加后元素的index

// example for CArray::Add   ---引用自msdnCArray
ptArray;CPoint pt(10,20);ptArray.Add(pt); // Element 0ptArray.Add(CPoint(30,40)); // Element 1

   (2)Get(i)给出给定索引值的数据

   (3)GetSize()获得元素的数量

   (4)IsEmpty()判断是否为空
   (5)Insert()在指定位置插入

 

 

 

 

 

 

  

 

转载于:https://www.cnblogs.com/qianzhilan/p/4099241.html

你可能感兴趣的文章
Educational Codeforces Round 6 D. Professor GukiZ and Two Arrays 二分
查看>>
设计模式:职责链模式(Chain Of Responsibility)
查看>>
stm32f429i disc usb cdc vcp 虚拟串口 example project (CubeMX Hal)
查看>>
Robust PCA via Outlier Pursuit
查看>>
实战练习细节(分行/拼接字符串/字符串转int/weak和copy)
查看>>
wddm 部署问题解决
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
Slab-based Intersection
查看>>
将输入流转为字符串工具类
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
高斯消元
查看>>
AngularJs表单验证
查看>>
regasm.exe 注册dll
查看>>
什么是死锁,简述死锁发生的四个必要条件,如何避免与预防死锁
查看>>
静态方法是否属于线程安全
查看>>
fegin 调用源码分析
查看>>
Linux的基本命令
查看>>
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
sql 语法大全
查看>>
SQLite移植手记1
查看>>