Pushing the Greatness of Humtastesweet.blog.chinaunix.net
tastesweet
全部博文(245)
webrtc(1)
freeswitch(2)
Router(0)
RFC(0)
雅思(1)
GRE语文(0)
GRE数学(2)
GRE作文(0)
GRE单词(0)
Opencv(2)
Free Software(0)
计算机专业技术资(7)
webkit(0)
gnash(3)
radvision H.323 (1)
kernel移植与研究(2)
nice tip(21)
tools(7)
GUI(1)
command in linux(1)
net(7)
shell(3)
driver(16)
os_learn(27)
bootloader(9)
Shell命令解释器(5)
控制算法(5)
New Materials fo(1)
US robot(0)
Japan robot(1)
Artificial Intel(0)
MSP430(1)
ARM920T(3)
life in cumtb(0)
life in sunplus(4)
2013年(4)
2012年(8)
2011年(13)
2010年(68)
2009年(152)
yidou
smilylqq
yfj300
galel
叶绍琛
lixw_chi
shenxiao
skyily
小超hide
wangjial
cynthia
浪花小雨
Bsolar
iBoost
goodhaoy
a4088264
57132399
jiajia71
分类: C/C++
2010-09-13 15:55:01
std::string char2str( int in_ch=-1) { char ch_buff[4]; memset(ch_buff,0,4); sprintf(ch_buff,"%d",in_ch); //itoa( in_ch,ch_buff,4); std::string str(ch_buff); return str; } char str2char(std::string str) { char ret=0; if( !str.empty() ) { ret= atoi( str.c_str() ); return ret; } return -1; }
上一篇:第八章 域与生命期
下一篇:vc2005中DLL调用错误分析
jaffaz2010-09-15 23:37:26
lexical_cast
登录 注册