tbyxyz

统计

留言簿

阅读排行榜

评论排行榜

VC中数字与字符串转换方法

字符串转数字

1CRT函数

 

 

ASCII

UNICODE

TCHAR

VS2005

int

atoi

_wtoi

_tstoi

_ttoi

_atoi_l

_wtoi_l

long

atol

_wtol

_tstoi

_ttoi

_atoi_l

_wtoi_l

__int64

_atoi64

_wtoi64

_tstoi64

_ttoi64

_atoi64_l

_wtoi64_l

float

 

 

 

_atoflt

_atoflt_l

double

atof

_wtof

_tstof

_ttof

_atof_l

_wtof_l

_atodbl

_atodbl_l

long double

 

 

 

_atoldbl

_atoldbl_l

2.使用sscanf

3.Windows SDK

<shlwapi.h>StrToInt

4.MFC/ATL

     CString::Format

数字转字符串

1.CRT函数

 

 

ASCII

UNICODE

TCHAR

VS2005

int

itoa

_itoa

_itow

_itot

 

long

ltoa

_ltoa

_ltow

_ltot

 

__int64

_i64toa

_i64tow

_i64tot

 

double

gcvt

_gcvt

_ecvt

_fcvt

_wtof

_tstof

_ttof

_gcvt_s

_ecvt_s

_fcvt_s

2.使用sprintf

3.<strsafe.h>StringCbPrintf

 

通用相互转换方法

1.C++流方式:

stringstream 

2.boost库:

boost:: lexical_cast

 


 

摘自MSDN

Data-Conversion Routines

Routine

Use

atof, _atof_l, _wtof, _wtof_l

Convert string to float

atoi, _atoi_l, _wtoi, _wtoi_l

Convert string to int

_atoi64, _atoi64_l, _wtoi64, _wtoi64_l

Convert string to __int64

atol, _atol_l, _wtol, _wtol_l

Convert string to long

_ecvt, _ecvt_s

Convert double to string of specified length

_fcvt, _fcvt_s

Convert double to string with specified number of digits following decimal point

_gcvt, _gcvt_s

Convert double number to string; store string in buffer

_itoa, _i64toa, _ui64toa, _itow, _i64tow, _ui64tow, _itoa_s, _i64toa_s, _ui64toa_s, _itow_s, _i64tow_s, _ui64tow_s

Convert int or __int64 to string

_ltoa, _ltow, _ltoa_s, _ltow_s

Convert long to string

strtod, _strtod_l, wcstod, _wcstod_l

Convert string to double

strtol, wcstol, _strtol_l, _wcstol_l

Convert string to long integer

strtoul, _strtoul_l, wcstoul, _wcstoul_l

Convert string to unsigned long integer

_ultoa, _ultow, _ultoa_s, _ultow_s

Convert unsigned long to string

atof, _atof_l, _wtof, _wtof_l

Convert wide-character string to a double

atoi, _atoi_l, _wtoi, _wtoi_l

Convert wide-character string to int

_atoi64, _atoi64_l, _wtoi64, _wtoi64_l

Convert wide-character string to __int64

atol, _atol_l, _wtol, _wtol_l

Convert wide-character string to long

 

posted on 2008-01-13 16:17 hosea 阅读(17228) 评论(3)  编辑 收藏 引用

评论

# re: VC中数字与字符串转换方法 2008-10-09 14:18 slime

good!!!!  回复  更多评论   

# re: VC中数字与字符串转换方法[未登录] 2013-03-28 17:41 Coder

哈哈,谢谢楼主的总结,学习了  回复  更多评论   

# re: VC中数字与字符串转换方法 2013-08-21 11:37 mxs810

好啊  回复  更多评论   


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理