赞助

02 2015 档案

摘要:出处:http://www.cnblogs.com/hanxi/archive/2012/07/25/2608068.html 阅读全文
posted @ 2015-02-10 15:24 车臣 阅读(210) 评论(0) 推荐(0) 编辑
摘要:1. C++拷贝构造函数参数为const类型原因:因为复制构造函数是用引用方式传递复制对象,引用方式传递的是地址,因此在构造函数内对该引用的修改会影响源对象,防止源对象被修改,就要把参数类型设为const2.枚举类型使用枚举时,会遇到这个警告: warning C4482: nonstandard ... 阅读全文
posted @ 2015-02-09 17:34 车臣 阅读(263) 评论(0) 推荐(1) 编辑
摘要:多态:http://blog.csdn.net/tmljs1988/article/details/8146521C++中两个类相互包含引用问题:http://blog.csdn.net/leo115/article/details/7395077 http://blog.csdn.net/tmlj... 阅读全文
posted @ 2015-02-02 13:43 车臣 阅读(226) 评论(0) 推荐(0) 编辑