当前位置:编程学习 > VC++ >>

vc++,关于TextOut的一个小问题

pdc->TextOut(10,10,itoa(x,new char,10)); pdc->TextOut(10,10,“。。。”); 我只会这么用,怎么才能像cout那样用一条语句输出一串东西? 比如cout<<x<<" "<<y<<"="<<x+y;
答案:Cstring  st;
int temp;
st.Format(_T("abc  %d"),temp); //里面和printf一样用
 
pdc->TextOut(10,10,_T(st));
其他:Cstring  st;
int temp;
st.Format(_T("abc  %d"),temp); //里面和printf一样用
 
pdc->TextOut(10,10,_T(st)); operate    TextOut 方法

上一个:谁有VC++6.0企业版中文版的下载地址
下一个:定义一个三维的CStringArray//一定要使用CArray模板?那操作的时候,使用那个类的函数对数组进行操作呢?

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,