<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>flyjimi的专栏</title><link>http://blog.csdn.net/flyjimi/</link><description>年轻无极限，开始做一个活跃的用户。</description><dc:language>zh-CN</dc:language><lastUpdateTime>Mon, 01 Dec 2008 14:27:00 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>白日梦飞翔</dc:creator><title>通过鼠标移动.NET Winform窗体中的控件</title><link>http://blog.csdn.net/flyjimi/archive/2008/12/01/3420520.aspx</link><pubDate>Mon, 01 Dec 2008 14:02:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/12/01/3420520.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/3420520.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/12/01/3420520.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/3420520.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3420520</trackback:ping><description>在Winform窗体中通过鼠标拖动，改变控件的位置。在拖动过程中，跟随鼠标显示一个与被拖动控件大小一样的黑框，用以模拟拖动效果。&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/3420520.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>白日梦飞翔</dc:creator><title>定时器：.NET Framework类库中的Timer类比较（翻译）</title><link>http://blog.csdn.net/flyjimi/archive/2008/11/30/3414143.aspx</link><pubDate>Sun, 30 Nov 2008 15:30:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/11/30/3414143.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/3414143.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/11/30/3414143.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/3414143.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3414143</trackback:ping><description>在客户端程序和服务器组件（包括windows服务）中，timer（定时器）通常扮演着一个重要角色。编写高效的timer驱动的托管代码，需要对程序流程和.net线程模型的精妙有清晰的理解。.NET Framework 类库提供了三个不同的timer类：System.Windows.Forms.Timer, System,Timers.Timer 和 System.Threading.Timer。每个Timer类被设计优化用于不同的场合。本文研究了这三个Timer类，帮组你理解如何及何时该使用哪个类。&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/3414143.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>白日梦飞翔</dc:creator><title>C#处理带命名空间的XML</title><link>http://blog.csdn.net/flyjimi/archive/2008/11/28/3400900.aspx</link><pubDate>Fri, 28 Nov 2008 11:23:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/11/28/3400900.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/3400900.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/11/28/3400900.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/3400900.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3400900</trackback:ping><description>写入带命名空间的xml文本。空namespace的元素不能设置前缀。 XmlElement ele = doc.CreateElement("bbs","hit","urn:bbs");读取带命名空间的xml文本。XmlNamespaceManager xnm = new XmlNamespaceManager(doc.NameTable);            xnm.AddNamespace("bbs", "urn:bbs");            XmlNode node = root.SelectSingleNode("bbs:hit", xnm);&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/3400900.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>白日梦飞翔</dc:creator><title>删除小数部分右边多余的0</title><link>http://blog.csdn.net/flyjimi/archive/2008/11/27/3391783.aspx</link><pubDate>Thu, 27 Nov 2008 15:46:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/11/27/3391783.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/3391783.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/11/27/3391783.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/3391783.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3391783</trackback:ping><description>删除小数部分右边多余的0。
input = 300.090800 , output = 300.0908 
input = 0 , output = 0 
input = 100 , output = 100 
input = 100.0 , output = 100.0 
input = 100.000 , output = 100.0 
input = 100.010 , output = 100.01&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/3391783.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>白日梦飞翔</dc:creator><title>判断DataRow的列是否被修改过</title><link>http://blog.csdn.net/flyjimi/archive/2008/11/27/3390154.aspx</link><pubDate>Thu, 27 Nov 2008 13:08:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/11/27/3390154.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/3390154.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/11/27/3390154.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/3390154.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3390154</trackback:ping><description>DataRowState可以检查数据行有没有修改，好像没有找到直接的方法判断数据列是否被修改过，自己写一个检查。&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/3390154.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>白日梦飞翔</dc:creator><title>JavaScript undefined vs. null （翻译）</title><link>http://blog.csdn.net/flyjimi/archive/2008/11/23/3357081.aspx</link><pubDate>Sun, 23 Nov 2008 19:54:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/11/23/3357081.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/3357081.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/11/23/3357081.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/3357081.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3357081</trackback:ping><description>老外写的讨论javascript中undefined和null的文章。
==做了类型转换。=== 同时检查类型和值。
&gt;&gt; null == undefined
true // there's the rub, sir.
&gt;&gt; null
null
&gt;&gt; undefined
null
&gt;&gt; typeof null
object
&gt;&gt; typeof undefined
undefined &lt;img src ="http://blog.csdn.net/flyjimi/aggbug/3357081.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>dom4j简单应用</title><link>http://blog.csdn.net/flyjimi/archive/2008/07/27/2720153.aspx</link><pubDate>Sun, 27 Jul 2008 18:18:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/07/27/2720153.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/2720153.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/07/27/2720153.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/2720153.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2720153</trackback:ping><description>&lt;br /&gt;网上资料不少，照着写了一个简单读写的片段，用的dom4j v1.6.1。&lt;br /&gt;package com.nba;&lt;br /&gt;&lt;br /&gt;import java.io.File;&lt;br /&gt;import java.i&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/2720153.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>java中String的比较（转载）</title><link>http://blog.csdn.net/flyjimi/archive/2008/07/13/2645063.aspx</link><pubDate>Sun, 13 Jul 2008 00:32:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/07/13/2645063.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/2645063.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/07/13/2645063.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/2645063.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2645063</trackback:ping><description>&lt;br /&gt;看例子：&lt;br /&gt;例子A：&lt;br /&gt;   String str1 = "java";&lt;br /&gt;   String str2 = "java";&lt;br /&gt;   System.out.print(str1==str2);&lt;br /&gt;地球上有点Java基础的人都知道会输出false，因为==比较的是引用，equals比较的是内容。不是我忽悠大家，你们可以在自己的机子上运行一 下，结果是true！原因很简单，String对象被放进常量池里了，再次出现“java”字符串的时候，JVM很兴奋地把str2的引用也指向了 “java”对象，它认为自己节省了内存开销。不难&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/2645063.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>java方法参数传递</title><link>http://blog.csdn.net/flyjimi/archive/2008/07/11/2638662.aspx</link><pubDate>Fri, 11 Jul 2008 13:44:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/07/11/2638662.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/2638662.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/07/11/2638662.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/2638662.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2638662</trackback:ping><description>基础数据类型（int，char，……）传值，对象类型（Object，数组，容器……）传引用。

有说java方法参数都是传值的，理解方式不同而已。引用本身也是值（对象地址）。

传值方式，传递的是值的副本，方法中对副本的修改，不会影响到调用方。

传引用方式，传递的是引用的副本。此时，形参和实参指向同一个内存地址。对引用副本所指向的对象的修改，如修改对象属性、容器内容等，会影响到调用方。对引用副本本身（对象地址）的修改，如设置为null，重新指向其他对象，不会影响到调用方。

只要知道传引用时，也是传递的引用的副本，就比较容易理解了。
&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/2638662.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>db2用type4驱动时报错encoding not supported</title><link>http://blog.csdn.net/flyjimi/archive/2008/06/23/2577900.aspx</link><pubDate>Mon, 23 Jun 2008 10:15:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/06/23/2577900.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/2577900.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/06/23/2577900.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/2577900.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2577900</trackback:ping><description>直接把驱动换成db2V8.2fixpack12的db2jcc.jar即可。&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/2577900.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>先安装了.net framework后，再安装IIS。访问 IIS 元数据库失败。</title><link>http://blog.csdn.net/flyjimi/archive/2008/06/22/2575936.aspx</link><pubDate>Sun, 22 Jun 2008 15:23:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/06/22/2575936.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/2575936.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/06/22/2575936.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/2575936.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2575936</trackback:ping><description>运行 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i  
&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/2575936.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>秀才的梦</title><link>http://blog.csdn.net/flyjimi/archive/2008/03/10/2164894.aspx</link><pubDate>Mon, 10 Mar 2008 22:52:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2008/03/10/2164894.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/2164894.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2008/03/10/2164894.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/2164894.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2164894</trackback:ping><description>第一个梦是梦见他在墙头种菜；第二个梦是梦见雨天，他出门打着伞却还戴着斗笠；第三个梦是梦见他和自己喜欢的女子背靠背睡在床上。&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/2164894.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>反编译工具Reflector下载(集成FileGenerator和FileDisassembler) </title><link>http://blog.csdn.net/flyjimi/archive/2007/06/16/1654443.aspx</link><pubDate>Sat, 16 Jun 2007 15:52:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2007/06/16/1654443.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/1654443.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2007/06/16/1654443.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/1654443.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1654443</trackback:ping><description>本压缩包中Reflector.exe已经升级为最新的5.0版本&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/1654443.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>前世是谁埋的你</title><link>http://blog.csdn.net/flyjimi/archive/2007/01/23/1491378.aspx</link><pubDate>Tue, 23 Jan 2007 17:15:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2007/01/23/1491378.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/1491378.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2007/01/23/1491378.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/1491378.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1491378</trackback:ping><description>你爱他的时候，他的缺点都是优点，你不爱他了，他的优点也成了缺点。 

从前有个书生, 和未婚妻约好在某年某月某日结婚。到那一天，未婚妻却嫁给了别人。书生受此打击, 一病不起。这时, 路过一游方僧人，从怀里摸出一面镜子叫书生看。 

书生看到茫茫大海，一名遇害的女子一丝不挂地躺在海滩上。路过一人, 看一眼，摇摇头, 走了。又路过一人, 将衣服脱下给女尸盖上，走了。再路过一人，过去，挖个坑，小心翼翼把尸体掩埋了。 

僧人解释道, 那具海滩上的女尸，就是你未婚妻的前世。你是第二个路过的人，曾给过他一件衣服. 她今生和你相恋, 只为还你一个情。但是她最终要报答一生一世的人, 是最后那个把她掩埋的人, 那人就是他现在的丈夫.。 

书生大悟。 &lt;img src ="http://blog.csdn.net/flyjimi/aggbug/1491378.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>flyjimi</dc:creator><title>又看了三国演义</title><link>http://blog.csdn.net/flyjimi/archive/2006/10/15/1335990.aspx</link><pubDate>Sun, 15 Oct 2006 22:57:00 GMT</pubDate><guid>http://blog.csdn.net/flyjimi/archive/2006/10/15/1335990.aspx</guid><wfw:comment>http://blog.csdn.net/flyjimi/comments/1335990.aspx</wfw:comment><comments>http://blog.csdn.net/flyjimi/archive/2006/10/15/1335990.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/flyjimi/comments/commentRss/1335990.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1335990</trackback:ping><description>小人刘备&lt;img src ="http://blog.csdn.net/flyjimi/aggbug/1335990.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>