QQ登录

只需一步,快速开始

上位机MFC如何将基本数据类型转换成CString类型

[ 复制链接 ]
我们在编写程序时,各种类型的数据与字符串间转换是极为常用的。
CStrign集成类提供了format成员函数将不同类型数据格式化为字符串。
例如
  1. void CDemoView::OnDraw(CDC* pDC)
  2. {
  3.         int a = 100;
  4.         double b = 1.23;

  5.         //将整型转换成CString
  6.         CString str1 = _T("");
  7.         str1.Format(_T("%d"), a);
  8.         //将实型转换成CString
  9.         CString str2 = _T("");
  10.         str2.Format(_T("%f"), b);

  11.         CString strText = _T("");
  12.         strText.Format(_T("str1 = %s"), str1);
  13.         pDC->TextOut(100, 50, strText);
  14.         strText.Format(_T("str2 = %s"), str2);
  15.         pDC->TextOut(100, 100, strText);
  16. }
复制代码
例程里,%d表示格式化一个整数。
%f表示格式化一个浮点数。


回复

使用道具 举报

快速回复 返回列表 客服中心 搜索