当前位置:网站首页>公用函数----mfc
公用函数----mfc
2022-08-01 17:50:00 【jxb_8888】
CString CTestDlg::itos(int i)
{
CString str;
str.Format("%d",i);
return str ;
}
void CTestDlg::OnButton2()
{
// TODO: Add your control notification handler code here
int i = 5 ;
AfxMessageBox(itos(i));
}
/
边栏推荐
猜你喜欢
随机推荐
RecSys'22|CARCA: Cross-Attention-Aware Context and Attribute Recommendations
指针和解引用
【R语言】批量重命名文件
B005 – 基于STC8的单片机智能路灯控制系统
M1芯片电脑安装cerebro
2022年SQL大厂高频实战面试题(详细解析)
gtk显示4通道rgba图像
Xingtu has been short of disruptive products?Will this M38T from the Qingdao factory be a breakthrough?
QT_事件类
Solve the problem that MySQL cannot insert Chinese data
QT_QDialog dialog
tooltip control
成为优秀架构师必备技能:怎样才能画出让所有人赞不绝口的系统架构图?秘诀是什么?快来打开这篇文章看看吧!...
浅谈大数据背景下数据库安全保障体系
【Day_12 0507】查找组成一个偶数最接近的两个素数
理财产品的月年化收益率怎么算?
B001 - 基于STM32的智能生态鱼缸
【R语言】线性混合模型进行重复测量设计分析
关于LocalDateTime的全局返回时间带“T“的时间格式处理
TCP百万并发服务器优化调参









