C++ Primer 读书笔记 - 第十三章
摘要:
1. Initialization和Assignment不一样。其中Initialization包括direct-initialization (如A a(...))和copy-initialization (如 A a = b;) 注意A a = b为copy-initialization, 而A a; A b; a = b;为Assignment。2. We cannot copy objects of the IO types, so we cannot use copy-initialization on objects of these types.3. As the copy .. 阅读全文
posted @ 2013-05-31 03:36 NULL00 阅读(439) 评论(0) 推荐(1) 编辑