码迷,mamicode.com
首页 > Windows程序 > 详细

wine习得知识小记

时间:2014-05-20 15:25:30      阅读:460      评论:0      收藏:0      [点我收藏+]

标签:des   style   c   color   a   int   

1、

VS2008:

sizeof cout:56
sizeof cin:60
sizeof streamsize: 4
 VS2012
sizeof cout:80
sizeof cin:96
sizeof streamsize: 8

这样就很明显了,为了支持大的stream而故意引入streamsize的改变。


2、

以前初学C\C++用pow函数的时候也有点疑惑,为什么参数int要转化成double,以为是系统规定的,当时为了编译能过就用了转换了,也没有看源代码的想法。今天看了HongQian给出的资料才知道,原来是考虑到那么几个问题才用double的,而且还提高了复用,感觉设计得很好~(除了给人一点点confuse)

Let‘s count the ways the hypthetical int pow_int(int, int) function could fail.


Overflow 
Result undefined pow_int(0,0) 
Result can‘t be represented pow_int(2,-1) 
The function has at least 2 failure modes. Integers can‘t represent these values, the behaviour of the function in these cases would need to be defined by the standard - and programmers would need to be aware of how exactly the function handles these cases.


3、

花括号其实是为了定义变量……
加上了花括号的话,里面的变量只在这个花括号里有用。
case 1:{int a;break;}
case 2:{int a;break;}
否则就得
case 1:int a;break;
case 2:int b;break;
值得注意的是,C85 里是不允许在任意地方定义变量的,必须放在一个复合语句的起始部分。

wine习得知识小记,布布扣,bubuko.com

wine习得知识小记

标签:des   style   c   color   a   int   

原文地址:http://blog.csdn.net/christopherwu/article/details/26166357

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!