<?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/yesyea" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/yesyea" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 27 Feb 2009 18:21:00 GMT</lastBuildDate><title>yesyea的专栏</title><link>http://blog.csdn.net/yesyea/</link><item><title>Xfire 实现.net 平台PDA数据交互</title><link>http://blog.csdn.net/yesyea/archive/2009/02/27/3943444.aspx</link><wfw:comment>http://blog.csdn.net/yesyea/comments/3943444.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yesyea/comments/commentRss/3943444.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3943444</trackback:ping><description>Xfire 实现.net 平台PDA数据交互 实现blob、clob类型的数据传输&lt;img src =&quot;http://blog.csdn.net/yesyea/aggbug/3943444.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 28 Feb 2009 02:21:00 +0800</pubDate><author>王浩</author><comments>http://blog.csdn.net/yesyea/archive/2009/02/27/3943444.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yesyea/archive/2009/02/27/3943444.aspx</guid><dc:creator>王浩</dc:creator><fs:srclink>http://blog.csdn.net/yesyea/archive/2009/02/27/3943444.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yesyea/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yesyea/~7374665/207830845/5484183</fs:itemid></item><item><title>java 多线程入门</title><link>http://blog.csdn.net/yesyea/archive/2008/10/29/3176699.aspx</link><wfw:comment>http://blog.csdn.net/yesyea/comments/3176699.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yesyea/comments/commentRss/3176699.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3176699</trackback:ping><description>一种是继承自Thread类.Thread 类是一个具体的类，即不是抽象类，该类封装了线程的行为。要创建一个线程，程序员必须创建一个从 Thread 类导出的新类。程序员通过覆盖 Thread 的 run() 函数来完成有用的工作。用户并不直接调用此函数；而是通过调用 Thread 的 start() 函数，该函数再调用 run()。&lt;br /&gt;&lt;br /&gt;    例如:&lt;br /&gt;&lt;br /&gt;    public class Test extends Thread{&lt;br /&gt;      public Test(){&lt;br /&gt;      }&lt;br /&gt;      public static void main(String args[]){&lt;br /&gt;        Test t1 = new Test();&lt;br /&gt;        Test t2 = new Test();&lt;br /&gt;        t1.start();&lt;br /&gt;        t2.start();&lt;br /&gt;      }&lt;br /&gt;      public void run(){&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/yesyea/aggbug/3176699.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 30 Oct 2008 02:42:00 +0800</pubDate><author>王浩</author><comments>http://blog.csdn.net/yesyea/archive/2008/10/29/3176699.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yesyea/archive/2008/10/29/3176699.aspx</guid><dc:creator>王浩</dc:creator><fs:srclink>http://blog.csdn.net/yesyea/archive/2008/10/29/3176699.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yesyea/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yesyea/~7374665/207830846/5484183</fs:itemid></item><item><title>高效程序员的五个好习惯</title><link>http://blog.csdn.net/yesyea/archive/2008/09/26/2984887.aspx</link><wfw:comment>http://blog.csdn.net/yesyea/comments/2984887.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/yesyea/comments/commentRss/2984887.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2984887</trackback:ping><description>1.Constructor Performs Minimal Work(不要让构造函数太累着)&lt;br /&gt;2.Methods Clearly Convey Their Intent(人如其名)&lt;br /&gt;3.An Object Performs a Focused Set of Services(不要狗拿耗子多管闲事)&lt;br /&gt; how to categorize these object is worthy of considering.(entity object,service object,facade object)&lt;br /&gt;4.State-Changing Methods Contain Minimal Behavior Logic(是非分明,不要纠缠不清)&lt;br /&gt; determine the boundar&lt;img src =&quot;http://blog.csdn.net/yesyea/aggbug/2984887.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 27 Sep 2008 03:29:00 +0800</pubDate><author>王浩</author><comments>http://blog.csdn.net/yesyea/archive/2008/09/26/2984887.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/yesyea/archive/2008/09/26/2984887.aspx</guid><dc:creator>王浩</dc:creator><fs:srclink>http://blog.csdn.net/yesyea/archive/2008/09/26/2984887.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/yesyea/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/yesyea/~7374665/207830847/5484183</fs:itemid></item></channel></rss>