﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>C++博客-弱水一瓢的博客</title><link>http://www.cppblog.com/Raycruiser/</link><description>    ——C++夜未眠</description><language>zh-cn</language><lastBuildDate>Thu, 23 Apr 2026 10:15:23 GMT</lastBuildDate><pubDate>Thu, 23 Apr 2026 10:15:23 GMT</pubDate><ttl>60</ttl><item><title>Effective C++笔记（转）</title><link>http://www.cppblog.com/Raycruiser/archive/2009/03/29/78244.html</link><dc:creator>弱水一瓢</dc:creator><author>弱水一瓢</author><pubDate>Sun, 29 Mar 2009 02:54:00 GMT</pubDate><guid>http://www.cppblog.com/Raycruiser/archive/2009/03/29/78244.html</guid><wfw:comment>http://www.cppblog.com/Raycruiser/comments/78244.html</wfw:comment><comments>http://www.cppblog.com/Raycruiser/archive/2009/03/29/78244.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/Raycruiser/comments/commentRss/78244.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/Raycruiser/services/trackbacks/78244.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 0. 拷贝构造函数和赋值运算符copy构造函数用来&#8220;以同型对象初始化自我对象&#8221;，copy assignment操作符被用来&#8220;从另一个同型对象中&#8221;拷贝其值到自我对象copy构造函数使用时，自我对象并没有被实例化；而copy assignment操作符使用时自我对象已经被实例化如：String&nbsp;str1("Hello");S...&nbsp;&nbsp;<a href='http://www.cppblog.com/Raycruiser/archive/2009/03/29/78244.html'>阅读全文</a><img src ="http://www.cppblog.com/Raycruiser/aggbug/78244.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/Raycruiser/" target="_blank">弱水一瓢</a> 2009-03-29 10:54 <a href="http://www.cppblog.com/Raycruiser/archive/2009/03/29/78244.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>温故而知新，学习MFC框架如何创建的过程收藏</title><link>http://www.cppblog.com/Raycruiser/archive/2009/03/29/78243.html</link><dc:creator>弱水一瓢</dc:creator><author>弱水一瓢</author><pubDate>Sun, 29 Mar 2009 02:25:00 GMT</pubDate><guid>http://www.cppblog.com/Raycruiser/archive/2009/03/29/78243.html</guid><wfw:comment>http://www.cppblog.com/Raycruiser/comments/78243.html</wfw:comment><comments>http://www.cppblog.com/Raycruiser/archive/2009/03/29/78243.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cppblog.com/Raycruiser/comments/commentRss/78243.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/Raycruiser/services/trackbacks/78243.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: &nbsp;下面我们跟踪一个MFC MDI的应用程序，来温习或学习一下。使用AppWizard创建一个MDI应用程序，我创建的应用程序叫MDITest，这样MFC生成了如下的类：                                    类名                                    作用           ...&nbsp;&nbsp;<a href='http://www.cppblog.com/Raycruiser/archive/2009/03/29/78243.html'>阅读全文</a><img src ="http://www.cppblog.com/Raycruiser/aggbug/78243.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/Raycruiser/" target="_blank">弱水一瓢</a> 2009-03-29 10:25 <a href="http://www.cppblog.com/Raycruiser/archive/2009/03/29/78243.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>C++内存管理</title><link>http://www.cppblog.com/Raycruiser/archive/2008/08/23/59726.html</link><dc:creator>弱水一瓢</dc:creator><author>弱水一瓢</author><pubDate>Sat, 23 Aug 2008 05:54:00 GMT</pubDate><guid>http://www.cppblog.com/Raycruiser/archive/2008/08/23/59726.html</guid><wfw:comment>http://www.cppblog.com/Raycruiser/comments/59726.html</wfw:comment><comments>http://www.cppblog.com/Raycruiser/archive/2008/08/23/59726.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/Raycruiser/comments/commentRss/59726.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/Raycruiser/services/trackbacks/59726.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: [导语]内存管理是C++最令人切齿痛恨的问题，也是C++最有争议的问题，C++高手从中获得了更好的性能，更大的自由，C++菜鸟的收获则是一遍一遍的检查代码和对C++的痛恨，但内存管理在C++中无处不在，内存泄漏几乎在每个C++程序中都会发生，因此要想成为C++高手，内存管理一关是必须要过的，除非放弃C++，转到Java或者.NET，他们的内存管理基本是自动的，当然你也放弃了自由和对内存的支配权，还...&nbsp;&nbsp;<a href='http://www.cppblog.com/Raycruiser/archive/2008/08/23/59726.html'>阅读全文</a><img src ="http://www.cppblog.com/Raycruiser/aggbug/59726.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/Raycruiser/" target="_blank">弱水一瓢</a> 2008-08-23 13:54 <a href="http://www.cppblog.com/Raycruiser/archive/2008/08/23/59726.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>