<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/ebasil" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/ebasil" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 06 Dec 2006 14:53:00 GMT</lastBuildDate><title>ebasil的专栏</title><link>http://blog.csdn.net/ebasil/</link><item><title>WINX 中的窗口类层次</title><link>http://blog.csdn.net/ebasil/archive/2006/12/06/1432124.aspx</link><wfw:comment>http://blog.csdn.net/ebasil/comments/1432124.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/ebasil/comments/commentRss/1432124.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1432124</trackback:ping><description>winx中窗口类的类层次非常直观，WindowMessage是所有窗口类的基类，负责消息处理以及提供缺省的消息处理机制。从此类派生了两个类：DialogBase和Window。顾名思义，DialogBase类用于对话框处理，Window类用于窗口处理。ModalDialog和ModalessDialog派生自DialogBase，分别对应于模式对话框和无模式对话框。MainFrame、MDIMainFrame和MDIChildFrame派生自Window，其中MainFrame用于普通的窗口应用程序；MDIMainFrame和MDIChildFrame这两个类用于MDI应用程序（目前，在winx中还没有实现这个功能，winx的后续版本中会实现它）。&lt;img src =&quot;http://blog.csdn.net/ebasil/aggbug/1432124.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 06 Dec 2006 22:53:00 +0800</pubDate><author>ebasil</author><comments>http://blog.csdn.net/ebasil/archive/2006/12/06/1432124.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ebasil/archive/2006/12/06/1432124.aspx</guid><dc:creator>ebasil</dc:creator></item><item><title>Winx基本类参考手册之AutoFreeAllocT</title><link>http://blog.csdn.net/ebasil/archive/2006/11/30/1422261.aspx</link><wfw:comment>http://blog.csdn.net/ebasil/comments/1422261.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ebasil/comments/commentRss/1422261.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1422261</trackback:ping><description>AutoFreeAllocT类

 

template 

class AutoFreeAllocT

 

&lt;img src =&quot;http://blog.csdn.net/ebasil/aggbug/1422261.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 30 Nov 2006 22:17:00 +0800</pubDate><author>ebasil</author><comments>http://blog.csdn.net/ebasil/archive/2006/11/30/1422261.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ebasil/archive/2006/11/30/1422261.aspx</guid><dc:creator>ebasil</dc:creator></item><item><title>Winx基本类参考手册之写在前面</title><link>http://blog.csdn.net/ebasil/archive/2006/11/30/1422252.aspx</link><wfw:comment>http://blog.csdn.net/ebasil/comments/1422252.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ebasil/comments/commentRss/1422252.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1422252</trackback:ping><description>写在前面：由于winx文档格式还没有正式定下来，目前写出来的类参考手册仅供参考。欢迎大家多提意见。&lt;img src =&quot;http://blog.csdn.net/ebasil/aggbug/1422252.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 30 Nov 2006 22:14:00 +0800</pubDate><author>ebasil</author><comments>http://blog.csdn.net/ebasil/archive/2006/11/30/1422252.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ebasil/archive/2006/11/30/1422252.aspx</guid><dc:creator>ebasil</dc:creator></item><item><title>Winx基本类使用指南之C++标准扩展（AutoFreeAlloc）</title><link>http://blog.csdn.net/ebasil/archive/2006/11/30/1422235.aspx</link><wfw:comment>http://blog.csdn.net/ebasil/comments/1422235.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/ebasil/comments/commentRss/1422235.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1422235</trackback:ping><description>现在终于有了第三种内存分配方式，这就是Winx中AutoFreeAlloc机能（这个机能属于Winx的标准C++的扩展部分），其基本原理是由一个AutoFreeAlloc负责某程序段中所有的内存分配，而不管所分配内存是由什么对象使用，在该程序段结束时，再由这个AutoFreeAlloc释放所有被分配的内存。对于具体的底层实现机制，感兴趣的朋友可以参照xushiwei的最袖珍的垃圾回收器。

&lt;img src =&quot;http://blog.csdn.net/ebasil/aggbug/1422235.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 30 Nov 2006 22:06:00 +0800</pubDate><author>ebasil</author><comments>http://blog.csdn.net/ebasil/archive/2006/11/30/1422235.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ebasil/archive/2006/11/30/1422235.aspx</guid><dc:creator>ebasil</dc:creator></item><item><title>Winx基本类使用指南之序言</title><link>http://blog.csdn.net/ebasil/archive/2006/11/30/1422198.aspx</link><wfw:comment>http://blog.csdn.net/ebasil/comments/1422198.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ebasil/comments/commentRss/1422198.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1422198</trackback:ping><description>前一段时间，浏览csdn网站时，无意中看到一篇关于内存分配的文章，就是xushiwei的最袖珍的垃圾回收器。从而引起了我对Winx的兴趣。目前，关于Winx的文档较少，所以就有了写一部分Winx文档的想法。&lt;img src =&quot;http://blog.csdn.net/ebasil/aggbug/1422198.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 30 Nov 2006 21:52:00 +0800</pubDate><author>ebasil</author><comments>http://blog.csdn.net/ebasil/archive/2006/11/30/1422198.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/ebasil/archive/2006/11/30/1422198.aspx</guid><dc:creator>ebasil</dc:creator></item></channel></rss>