在Windows API或MFC中有任何模拟atoh()功能吗?
atoh()
atoh() 将包含十六进制数字的字符串转换为无符号数字
unsigned x = atoh("A");
操作后x = 10.
在Windows中我有一个CString,包含"A".我怎样才能将它转换为int?
long x = strtoul("A", (char **) NULL, 16); // x will be 10 decimal