﻿<?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++博客-xiaoU's blog</title><link>http://www.cppblog.com/xiaouisme/</link><description>                     &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;       &amp;nbsp;         我是大兴安岭动物园猫科动物小鼬uuuuu</description><language>zh-cn</language><lastBuildDate>Tue, 14 Apr 2026 23:06:42 GMT</lastBuildDate><pubDate>Tue, 14 Apr 2026 23:06:42 GMT</pubDate><ttl>60</ttl><item><title>为什么VS监视的函数地址和输出的函数地址不同？</title><link>http://www.cppblog.com/xiaouisme/archive/2009/12/03/102455.html</link><dc:creator>小鼬</dc:creator><author>小鼬</author><pubDate>Thu, 03 Dec 2009 04:51:00 GMT</pubDate><guid>http://www.cppblog.com/xiaouisme/archive/2009/12/03/102455.html</guid><wfw:comment>http://www.cppblog.com/xiaouisme/comments/102455.html</wfw:comment><comments>http://www.cppblog.com/xiaouisme/archive/2009/12/03/102455.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.cppblog.com/xiaouisme/comments/commentRss/102455.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/xiaouisme/services/trackbacks/102455.html</trackback:ping><description><![CDATA[<p>为什么VS监视的函数地址和输出的函数地址不同？</p>
<p>#include&lt;iostream&gt;<br>using namespace std;<br>void gf(){ cout&lt;&lt;"::gf()"; }<br>typedef void(*F)();<br>int main()<br>{ <br>&nbsp;&nbsp;&nbsp; gf();<br>&nbsp;&nbsp;&nbsp; F f=gf;<br>&nbsp;&nbsp;&nbsp; printf("%p&nbsp; \n",f);//输出的是00434F55<br>&nbsp;&nbsp;&nbsp; system("pause");<br>}</p>
<p>VS2005下断点，添加监视：<br><img src="http://www.cppblog.com/images/cppblog_com/xiaouisme/232.jpg" border=0><br><br><font color=#f70997>为什么输出的函数地址和VS监视到的不同？<br></font>答：<font color=#3809f7>输出的是跳转指令的地址,监视到的是函数地址.<br>两条指令紧挨着执行，一般输出的都是跳转表的地址，而不是函数的绝对地址</font></p>
<p><br>以下是VS下断点后，调试/窗口/反汇编 显示的汇编代码：<br>&#8230;&#8230;<br>;跳转表：&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; （本行是本人加的）<br>std::locale::id::operator unsigned int:<br>00434F50&nbsp; jmp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; std::locale::id::operator unsigned int (43D8F0h) <br>gf:<br><strong>00434F55&nbsp; jmp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gf (4377C0h)</strong>&nbsp; <br>DName::isValid:<br>00434F5A&nbsp; jmp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DName::isValid (4845D0h) <br>&#8230;&#8230;<br>void gf(){ cout&lt;&lt;"::gf()"; }<br><strong>004377C0</strong>&nbsp; push&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ebp&nbsp; <br>004377C1&nbsp; mov&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ebp,esp <br>&#8230;&#8230;<br>gf();<br>0043783E&nbsp; <strong>call&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gf (434F55h) <br></strong>F f=gf;<br>00437843&nbsp; mov&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dword ptr [f],offset gf (434F55h) <br>&#8230;&#8230;<br>system("pause");<br>0043785B&nbsp; push&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; offset string "pause" (4A2098h) <br>00437860&nbsp; call&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; @ILT+2850(_system) (434B27h) <br>00437865&nbsp; add&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; esp,4 <br>&#8230;&#8230;</p>
<img src ="http://www.cppblog.com/xiaouisme/aggbug/102455.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/xiaouisme/" target="_blank">小鼬</a> 2009-12-03 12:51 <a href="http://www.cppblog.com/xiaouisme/archive/2009/12/03/102455.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>编译时、运行时调通过指针将用到哪个虚函数、非虚函数、成员变量</title><link>http://www.cppblog.com/xiaouisme/archive/2009/12/03/102454.html</link><dc:creator>小鼬</dc:creator><author>小鼬</author><pubDate>Thu, 03 Dec 2009 04:39:00 GMT</pubDate><guid>http://www.cppblog.com/xiaouisme/archive/2009/12/03/102454.html</guid><wfw:comment>http://www.cppblog.com/xiaouisme/comments/102454.html</wfw:comment><comments>http://www.cppblog.com/xiaouisme/archive/2009/12/03/102454.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/xiaouisme/comments/commentRss/102454.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/xiaouisme/services/trackbacks/102454.html</trackback:ping><description><![CDATA[<table style="TABLE-LAYOUT: fixed" cellSpacing=0 cellPadding=0 width="99%" border=0>
    <tbody>
        <tr>
            <td class=logt><span id=ob_logd153></span>
            <p>#include&lt;iostream&gt;<br>using namespace std;</p>
            <p>class A{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int i;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; char c;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; void f(){cout&lt;&lt;"A::f()"&lt;&lt;endl;}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; virtual void vf(){cout&lt;&lt;"A::vf()"&lt;&lt;endl;}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; A():i(11){}<br>}a;</p>
            <p>class B{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; void f(){cout&lt;&lt;"B::f()"&lt;&lt;endl;}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; virtual void vf(){cout&lt;&lt;"B::vf()"&lt;&lt;endl;}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int c;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int i;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; B():i(22),c(66){}<br>}b;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
            <p>int main(){&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; A *pA=(A*)&amp;b;<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; pA-&gt;f();/<font color=#2222dd>*编译时就决定了调用A::f()。因为不是虚函数，不存在"运行时决定类型"。&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(所谓运行时决定类型，其实就是在调用虚函数时，将根据对象的内存地址来偏移，找到虚函数表。。。)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;类的非虚成员函数其实是全局函数（因此，就存储空间而言，它&#8221;不属于&#8220;类），调用时根据隐<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;含指针this来决定调用哪个，其实就是全局的重载函数——根据形参决定调用版本。&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;这里传递的是A类指针，当然调用的是void f(A* this) 这个版本。&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;因此，编译时就确定了调用的哪个函数。&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;为什么不在运行时决定？因为它&#8221;不属于&#8220;类，它是全局的，不可能根据类对象地址来偏移来寻址。 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *</font>/<br>&nbsp;&nbsp;&nbsp; cout&lt;&lt;pA-&gt;i&lt;&lt;endl;/<font color=#1a1ae6>*编译时认为将输出A::i,但是运行时根据类对象寻址类成员变量，<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 输出的其实是:int(b对象的地址 ＋ a对象中i相对于&amp;a的偏移)。<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为什么要在运行时决定？因为它是&#8220;属于&#8221;类的，要根据类对象的地址来偏移寻址。<br>&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt;pA-&gt;b&lt;&lt;endl;编译时认为将输出A::b,所以编译出错："class A has no member named 'b' <br></font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;*/&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; pA-&gt;vf();/<font color=#3d11ee>*运行时决定。 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 他是怎么做到运行时决定的呢？魔术，说穿了，所谓&#8220;运行时动态类型&#8221;根本就是一个障眼法。<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;编译时，调用什么并不知道，只知道调用的是一个虚函数，因此，根据指针指向的对象——b来寻址，（其实，此刻它仍然把pA指向的b当作A类对象，但是同一个编译器下虚表相对于对象起始地址的偏移是编译器已经确定了的。）找到虚函数表地址（虚表是在类内部的），然后根据虚表找到虚函数地址。</font><font color=#3d11ee><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 因此，&#8220;运行时决定&#8221;的立足点是虚函数。 <br>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;*/&nbsp;&nbsp;&nbsp; <br></font>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; cout&lt;&lt;"\n------------------&gt;"&lt;&lt;endl;<br>&nbsp;&nbsp;&nbsp; cout&lt;&lt;sizeof b&lt;&lt;"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;"&lt;&lt;sizeof a&lt;&lt;endl;&nbsp;<font color=#3d11ee>/*VC中，类对象各成员的存储顺序依次为：虚表（如果有则）4字节，非静态成员变量按声明顺序依次（默认4字节对齐）。<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 静态成员和成员函数都不在类对象的&#8220;内部&#8221;*/</font><br>&nbsp;&nbsp;&nbsp; cout&lt;&lt;int(*&nbsp; ((char*)&amp;b+4)&nbsp; )&lt;&lt;endl; <br>&nbsp;&nbsp;&nbsp; cout&lt;&lt;int(*&nbsp; ((char*)&amp;b+8)&nbsp; )&lt;&lt;endl; <br>&nbsp;&nbsp;&nbsp; typedef void(*F)();<br>&nbsp;&nbsp;&nbsp; F ff= (F)*(&nbsp;&nbsp; (int*)*(int*)&amp;b +0&nbsp;&nbsp; ) ;<br>&nbsp;&nbsp;&nbsp; ff();<br>&nbsp;&nbsp;&nbsp; cout&lt;&lt;"&lt;------------------\n"&lt;&lt;endl;<br><br>&nbsp;&nbsp;&nbsp; system("pause");<br>}</p>
            </td>
        </tr>
    </tbody>
</table>
<img src ="http://www.cppblog.com/xiaouisme/aggbug/102454.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/xiaouisme/" target="_blank">小鼬</a> 2009-12-03 12:39 <a href="http://www.cppblog.com/xiaouisme/archive/2009/12/03/102454.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>临时纪录的</title><link>http://www.cppblog.com/xiaouisme/archive/2009/04/13/79787.html</link><dc:creator>小鼬</dc:creator><author>小鼬</author><pubDate>Mon, 13 Apr 2009 03:46:00 GMT</pubDate><guid>http://www.cppblog.com/xiaouisme/archive/2009/04/13/79787.html</guid><wfw:comment>http://www.cppblog.com/xiaouisme/comments/79787.html</wfw:comment><comments>http://www.cppblog.com/xiaouisme/archive/2009/04/13/79787.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/xiaouisme/comments/commentRss/79787.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/xiaouisme/services/trackbacks/79787.html</trackback:ping><description><![CDATA[▲MagicLinux：<br><a title="M L开发总部 " href="http://www.magiclinux.org/" target=_blank>M L开发总部 <br></a><a title="M L公社论坛" href="http://www.linuxfans.org/bbs/index.php" target=_blank>M L公社论坛</a><br><a title="Magic Linux wiki" href="http://wiki.magiclinux.org/index.php/%E9%A6%96%E9%A1%B5" target=_blank>Magic Linux wiki</a><br><a title=[正式版配置指南]＋[常见... href="http://irc.linuxfans.org/bbs/viewthread.php?tid=187808" target=_blank>[正式版配置指南]＋[常见...</a><br><br>▲linux技术：<br><a title=linuxcmd.org href="http://www.linuxcmd.org/cn/" target=_blank>linuxcmd.org</a><br><a title="命令行之菜鸟篇 " href="http://wiki.magiclinux.org/index.php/Linux%E5%91%BD%E4%BB%A4%E8%A1%8C%E4%B9%8B%E8%8F%9C%E9%B8%9F%E5%AD%A6%E4%B9%A0%E7%AF%87" target=_blank>命令行之菜鸟篇 </a><br><a title=编写SHELL脚本 href="http://wiki.magiclinux.org/index.php/%E7%BC%96%E5%86%99%E4%BD%A0%E7%9A%84%E7%AC%AC%E4%B8%80%E4%B8%AA%E8%84%9A%E6%9C%AC%E5%B9%B6%E6%89%A7%E8%A1%8C%E5%AE%83%EF%BC%88Writing_your_first_script_and_getting_it_to_work_%29" target=_blank>编写SHELL脚本</a><br><br>▲linux应用程序：<br><a title=prozilla下载工具官网 href="http://prozilla.genesys.ro/" target=_blank>prozilla下载工具官网</a><br><br>▲linux包下载点：<br><a title="ftp.linux-ren.org/&#13;&#10;" href="ftp://www.linux-ren.org/pub/everest/0.5/OS/RPMS/" target=_blank>ftp.linux-ren.org/ </a><br><a title=rpm.search href="http://rpm.pbone.net/" target=_blank>rpm.search</a><br><a title=ftp.ML2.1/haulm/ href="http://ftp.magiclinux.org.cn/haulm/2.1/" target=_blank>ftp.ML2.1/haulm/</a><br><br>▲linshi：<br><a href="http://hi.baidu.com/pcdigger/blog/item/07f0ed1936a0210034fa410c.html">http://hi.baidu.com/pcdigger/blog/item/07f0ed1936a0210034fa410c.html</a><br>&nbsp;<a href="http://cache.baidu.com/c?m=9d78d513d99c12fa03bc837f7d488c3a5e1e97624cc0d06368d5e34884652b564711f4ba57210704a2d20c6516df494b9cf52102351421c7c39bcc19c9fcd27620d26172320b87320fce5cea8e5125b67ecb06aee54db4e6b12593d98f938a49039a12183cdab0dc095603ca19f31e35e3a19c5f152913aded4666e8590073d97c1e&amp;p=893bc54ad0c45dc301f1c7710807&amp;user=baidu">http://cache.baidu.com/c?m=9d78d513d99c12fa03bc837f7d488c3a5e1e97624cc0d06368d5e34884652b564711f4ba57210704a2d20c6516df494b9cf52102351421c7c39bcc19c9fcd27620d26172320b87320fce5cea8e5125b67ecb06aee54db4e6b12593d98f938a49039a12183cdab0dc095603ca19f31e35e3a19c5f152913aded4666e8590073d97c1e&amp;p=893bc54ad0c45dc301f1c7710807&amp;user=baidu</a><br><a href="http://www.linuxfans.org/bbs/thread-186257-1-1.html">http://www.linuxfans.org/bbs/thread-186257-1-1.html</a>
<img src ="http://www.cppblog.com/xiaouisme/aggbug/79787.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/xiaouisme/" target="_blank">小鼬</a> 2009-04-13 11:46 <a href="http://www.cppblog.com/xiaouisme/archive/2009/04/13/79787.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>发送模拟按键&amp;&amp;由进程名结束进程</title><link>http://www.cppblog.com/xiaouisme/archive/2008/09/16/61958.html</link><dc:creator>小鼬</dc:creator><author>小鼬</author><pubDate>Tue, 16 Sep 2008 04:09:00 GMT</pubDate><guid>http://www.cppblog.com/xiaouisme/archive/2008/09/16/61958.html</guid><wfw:comment>http://www.cppblog.com/xiaouisme/comments/61958.html</wfw:comment><comments>http://www.cppblog.com/xiaouisme/archive/2008/09/16/61958.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.cppblog.com/xiaouisme/comments/commentRss/61958.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/xiaouisme/services/trackbacks/61958.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 发送模拟按键ctrl＋eSC和‘U’； 由进程名结束进程<br>、、、自己关机的个东西&nbsp;&nbsp;<a href='http://www.cppblog.com/xiaouisme/archive/2008/09/16/61958.html'>阅读全文</a><img src ="http://www.cppblog.com/xiaouisme/aggbug/61958.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/xiaouisme/" target="_blank">小鼬</a> 2008-09-16 12:09 <a href="http://www.cppblog.com/xiaouisme/archive/2008/09/16/61958.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>智力游戏BLOXORZ</title><link>http://www.cppblog.com/xiaouisme/archive/2008/06/05/52242.html</link><dc:creator>小鼬</dc:creator><author>小鼬</author><pubDate>Thu, 05 Jun 2008 06:50:00 GMT</pubDate><guid>http://www.cppblog.com/xiaouisme/archive/2008/06/05/52242.html</guid><wfw:comment>http://www.cppblog.com/xiaouisme/comments/52242.html</wfw:comment><comments>http://www.cppblog.com/xiaouisme/archive/2008/06/05/52242.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/xiaouisme/comments/commentRss/52242.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/xiaouisme/services/trackbacks/52242.html</trackback:ping><description><![CDATA[无聊到心慌 无意中搜到了这个flash游戏：<br>
<object height=360 width=480 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 xcodebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
<PARAM name="Movie" value="http://img2.pconline.com.cn/pconline/0708/28/1091170_28turningsqure.swf" /> <PARAM name="Quality" value="high"/><embed src="http://img2.pconline.com.cn/pconline/0708/28/1091170_28turningsqure.swf" width="480" height="360"  quality="high"      type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
</object><br>玩到第9(?)关，怎么也过不了，同学过来乱摁一通，摁倒空格键时方块一闪赫我一跳，马上又按了下空格，才发现原来空格可以切换拆开方块的主次序。<br>下午玩到16关就叉掉了浏览器——尚不知道要提交score才能下次接着自己的玩。<br>夜里重新搞，整到两点，过了27关：<br><img height=147 alt="" src="http://www.cppblog.com/images/cppblog_com/xiaouisme/7304/o___1.gif" width=387 border=0><br>依然没有提交也不知道提交可以接着自己上次的玩。<br>第二天百度&#8220;BLOXORZ&#8221;，想找找有没有人把这个flash游戏做成可以选关的软件，免得想完却还得重新玩。<br>这才搜到原来是可以接着玩的，问题是我都没有提交。搜到别人提交的积分：(关-积分)01-780464、02-290299、03-918660、04- 520967、05-028431、06-524383、07-189493、08-499707 、09-074355、10-300590、11-291709、12-958640、13-448106、14-210362、15-098598、 16-000241、17-683596、18-284933、19-119785、20-543019、21-728724、22-987319、23 -293486、24-088198、25-250453、26-426329、27-660141、28-769721、29-691859、30- 280351、31-138620、32-879021、33-614955<br>于是玩了下33关：<br><img height=147 alt="" src="http://www.cppblog.com/images/cppblog_com/xiaouisme/7304/o___2.gif" width=387 border=0><br>通关了 后悔了 假如一开始就知道可以接着玩 我肯定会上传自己的积分<br>如果不是为了找该游戏可选关卡的版本，就不会看到别人上传的积分也就不会丧失了28——32的兴致。都通关了 还玩什么&nbsp; 玩完了 完蛋了 继续无聊 
<img src ="http://www.cppblog.com/xiaouisme/aggbug/52242.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/xiaouisme/" target="_blank">小鼬</a> 2008-06-05 14:50 <a href="http://www.cppblog.com/xiaouisme/archive/2008/06/05/52242.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>线程通信之事件对象</title><link>http://www.cppblog.com/xiaouisme/archive/2008/05/25/51022.html</link><dc:creator>小鼬</dc:creator><author>小鼬</author><pubDate>Sun, 25 May 2008 03:52:00 GMT</pubDate><guid>http://www.cppblog.com/xiaouisme/archive/2008/05/25/51022.html</guid><wfw:comment>http://www.cppblog.com/xiaouisme/comments/51022.html</wfw:comment><comments>http://www.cppblog.com/xiaouisme/archive/2008/05/25/51022.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/xiaouisme/comments/commentRss/51022.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/xiaouisme/services/trackbacks/51022.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 笔记：线程通信之事件对象。&nbsp;&nbsp;<a href='http://www.cppblog.com/xiaouisme/archive/2008/05/25/51022.html'>阅读全文</a><img src ="http://www.cppblog.com/xiaouisme/aggbug/51022.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/xiaouisme/" target="_blank">小鼬</a> 2008-05-25 11:52 <a href="http://www.cppblog.com/xiaouisme/archive/2008/05/25/51022.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>ARPyy2.0</title><link>http://www.cppblog.com/xiaouisme/archive/2008/05/23/50910.html</link><dc:creator>小鼬</dc:creator><author>小鼬</author><pubDate>Fri, 23 May 2008 15:23:00 GMT</pubDate><guid>http://www.cppblog.com/xiaouisme/archive/2008/05/23/50910.html</guid><wfw:comment>http://www.cppblog.com/xiaouisme/comments/50910.html</wfw:comment><comments>http://www.cppblog.com/xiaouisme/archive/2008/05/23/50910.html#Feedback</comments><slash:comments>4</slash:comments><wfw:commentRss>http://www.cppblog.com/xiaouisme/comments/commentRss/50910.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/xiaouisme/services/trackbacks/50910.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: (已更新V2.0！)ARPyy是一个ARP局域网内基于ARP工作原理的攻击程序。&nbsp;&nbsp;<a href='http://www.cppblog.com/xiaouisme/archive/2008/05/23/50910.html'>阅读全文</a><img src ="http://www.cppblog.com/xiaouisme/aggbug/50910.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/xiaouisme/" target="_blank">小鼬</a> 2008-05-23 23:23 <a href="http://www.cppblog.com/xiaouisme/archive/2008/05/23/50910.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>