【c++ Primer 】 4.10复习题 12题(int)、(int&)和(int*)
摘要:
(1)首先通过一个例子看(int)和(int&)的区别:float a = 1.0f;cout << (int)a << endl;cout << (int&)a << endl;cout << boolalpha << ( (int)a == (int&)a ) << endl; // boolalpha 用符号形式表示真假float b = 0.0f;cout << (int)b << endl;cout << (int&)b <&l 阅读全文
posted @ 2012-01-07 22:26 小田的专栏 阅读(187) 评论(0) 推荐(0) 编辑