C/C++教程

C++ 字符与数的转换

本文主要是介绍C++ 字符与数的转换,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
  1. CString转换成int
int_16 = (int) wcstol(str_value,NULL,16);
int_10 = (int) wcstol(str_value,NULL,10);
int_8 = (int) wcstol(str_value,NULL,8);
  1. CString转换成float
float f=atof(str);
  1. char 转换成CString

转成16进制字符串

strValue.Formate(_T("%2x"),ch[i]);

转成10进制字符串

strValue.Formate(_T("%2d"),ch[i]);

转成8进制字符串

strValue.Formate(_T("%2o"),ch[i]);

浮点数转换成字符串

strValue.Formate(_T("%2.4f"),fvalue);
这篇关于C++ 字符与数的转换的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!