当前位置:  开发笔记 > 开发工具 > 正文

Windows模拟UNIX atoh()函数

如何解决《Windows模拟UNIXatoh()函数》经验,为你挑选了1个好方法。

在Windows API或MFC中有任何模拟atoh()功能吗?

atoh() 将包含十六进制数字的字符串转换为无符号数字

unsigned x = atoh("A");

操作后x = 10.

在Windows中我有一个CString,包含"A".我怎样才能将它转换为int?



1> activout.se..:
long x = strtoul("A", (char **) NULL, 16);
// x will be 10 decimal

推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有