本文介绍了使用str.format()的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
对于codeguru的所有用户来说,hai和一个非常好的早上/下午/晚上,我想问一下如何使用.format()的操作;i尝试将DWORD转换为CString
目前正在使用visual studio 2010,制作MFC项目
这里是我所做的示例代码,
// 我的代码示例
DWORD abc;
CString temp;
temp.format( %x,abc); // 。出现错误。
而我使用其他格式的.format();
它运行正常,但没有给出答案,因为它重新运行它,回答继续改变〜
DWORD def;
CString ghi;
ghi.temp(_T(%x,def));
解决方案
hai and a very good morning / afternoon/ evening to all of the user of codeguru,, i would like to ask bout how to use the operation of .format();
i tried to convert DWORD to CString
currently using visual studio 2010, making project of MFC
here is the sample code that i have done,
// sample of my code DWORD abc; CString temp; temp.format("%x", abc); // there is an error at the "."
while i m using other format of .format();
it run properly, but did not give out the answer as what it propose to be, while when i re-run it, the answer keep on changing~
DWORD def;
CString ghi;
ghi.temp(_T("%x", def));
解决方案
这篇关于使用str.format()的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!