发布时间:2015-07-23 21:44:17
<p style="margin:10px auto;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;line-height:19.5px;white-space:normal;background-color:#F5F5F5;">【http://www.jellythink.com/archives/82】<br />【http://www.cnblogs.com/ccdev/archive/2012/12/19/2825355.html】<br />废话不多说,.........【阅读全文】
发布时间:2015-07-20 21:44:44
1.参数从右到左压栈<br />2.d格式:用来输出十进制整数。有以下几种用法:<br style="box-sizing:border-box;line-height:18.5714282989502px;white-space:normal;" /> %d:按整型数据的实际长度输出。<br style="box-sizing:border-box;line-height:18.5714282989502px;white-space.........【阅读全文】
发布时间:2015-07-19 20:22:58
http://www.cplusplus.com/reference/stl/<br /><br /><b style="font-family:verdana, arial, helvetica, sans-serif;font-size:12px;line-height:normal;white-space:normal;background-color:#FFFFFF;">Sequence containers</b><span style="font-family:verdana, arial, helvetica, sans-serif;font-size:12px;line-h.........【阅读全文】
发布时间:2015-07-19 15:41:45
1 整值提升:char 、signed char 、unsigned char、short、unsigned short、bool 都可以转化为int;<br />2为防止进度损失 尽量转化到较宽类型:long double>double>float>int<br />3 <br /><br />char和int的转换<br />bool和int的转换:把int赋给bool型 :非零的int都转化为true(1),零转化为零(fal.........【阅读全文】