猿问
求指教,关于在c++中的Format()是一个什么函数?有什么特别意义
在c++中看到一个陌生的Format(),这是一个函数吗? 函数原型是什么,求大侠帮忙
白板的微信
浏览 290
回答 2
2回答
ibeautiful
C++应该没有这个函数的,你说的Format是在MFC程序里看到的吧Format是CString字符串类的成员函数CString::Format( LPCTSTR lpszFormat, ... );用法很简单,就和C语言里的printf函数一个样比如:int count=3;CString str;str.Format("Count is %d",count);这样str就变成:Count is 3
0
0
0
holdtom
格式化函数,把数字转换成字符串,MFC中经常用到
0
0
0
随时随地看视频
慕课网APP
相关分类
Java
C
typedef入门问题
1 回答
我要回答