﻿<?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++博客-SEMAN-随笔分类-Other</title><link>http://www.cppblog.com/SEMAN/category/214.html</link><description>曾经沧海难为水、除却巫山不是云</description><language>zh-cn</language><lastBuildDate>Sat, 24 May 2008 09:16:10 GMT</lastBuildDate><pubDate>Sat, 24 May 2008 09:16:10 GMT</pubDate><ttl>60</ttl><item><title>GCC 参数详解</title><link>http://www.cppblog.com/SEMAN/archive/2005/11/30/1440.html</link><dc:creator>味全每日C++</dc:creator><author>味全每日C++</author><pubDate>Wed, 30 Nov 2005 05:36:00 GMT</pubDate><guid>http://www.cppblog.com/SEMAN/archive/2005/11/30/1440.html</guid><wfw:comment>http://www.cppblog.com/SEMAN/comments/1440.html</wfw:comment><comments>http://www.cppblog.com/SEMAN/archive/2005/11/30/1440.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.cppblog.com/SEMAN/comments/commentRss/1440.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/SEMAN/services/trackbacks/1440.html</trackback:ping><description><![CDATA[<FONT face=Verdana color=#000000 size=2>[介绍] <BR>gcc and g++分别是gnu的c &amp; c++编译器 gcc/g++在执行编译工作的时候，总共需要4步 <BR><BR>1.预处理,生成.i的文件[预处理器cpp] <BR>2.将预处理后的文件不转换成汇编语言,生成文件.s[编译器egcs] <BR>3.有汇编变为目标代码(机器代码)生成.o的文件[汇编器as] <BR>4.连接目标代码,生成可执行程序[链接器ld] <BR>[参数详解] <BR>-x language filename <BR>　 设定文件所使用的语言,使后缀名无效,对以后的多个有效.也就是根据约定C语言的后 <BR>缀名称是.c的，而C++的后缀名是.C或者.cpp,如果你很个性，决定你的C代码文件的后缀 <BR>名是.pig 哈哈，那你就要用这个参数,这个参数对他后面的文件名都起作用，除非到了 <BR>下一个参数的使用。 <BR>　　可以使用的参数吗有下面的这些 <BR>　　`c', `objective-c', `c-header', `c++', `cpp-output', `assembler', and `a <BR>ssembler-with-cpp'. <BR>　　看到英文，应该可以理解的。 <BR>　　例子用法: <BR>　　gcc -x c hello.pig <BR>　　 <BR>-x none filename <BR>　　关掉上一个选项，也就是让gcc根据文件名后缀，自动识别文件类型 <BR>　　例子用法: <BR>　　gcc -x c hello.pig -x none hello2.c <BR>　　 <BR>-c <BR>　　只激活预处理,编译,和汇编,也就是他只把程序做成obj文件 <BR>　　例子用法: <BR>　　gcc -c hello.c <BR>　　他将生成.o的obj文件 <BR>-S <BR>　　只激活预处理和编译，就是指把文件编译成为汇编代码。 <BR>　　例子用法 <BR>　　gcc -S hello.c <BR>　　他将生成.s的汇编代码，你可以用文本编辑器察看 <BR>-E <BR>　　只激活预处理,这个不生成文件,你需要把它重定向到一个输出文件里面. <BR>　　例子用法: <BR>　　gcc -E hello.c &gt; pianoapan.txt <BR>　　gcc -E hello.c | more <BR>　　慢慢看吧,一个hello word 也要与处理成800行的代码 <BR>-o <BR>　　制定目标名称,缺省的时候,gcc 编译出来的文件是a.out,很难听,如果你和我有同感 <BR>，改掉它,哈哈 <BR>　　例子用法 <BR>　　gcc -o hello.exe hello.c (哦,windows用习惯了) <BR>　　gcc -o hello.asm -S hello.c <BR>-pipe <BR>　　使用管道代替编译中临时文件,在使用非gnu汇编工具的时候,可能有些问题 <BR>　　gcc -pipe -o hello.exe hello.c <BR>-ansi <BR>　　关闭gnu c中与ansi c不兼容的特性,激活ansi c的专有特性(包括禁止一些asm inl <BR>ine typeof关键字,以及UNIX,vax等预处理宏, <BR>-fno-asm <BR>　　此选项实现ansi选项的功能的一部分，它禁止将asm,inline和typeof用作关键字。 <BR>　　　　 <BR>-fno-strict-prototype <BR>　　只对g++起作用,使用这个选项,g++将对不带参数的函数,都认为是没有显式的对参数 <BR>的个数和类型说明,而不是没有参数. <BR>　　而gcc无论是否使用这个参数,都将对没有带参数的函数,认为城没有显式说明的类型 <BR><BR>　　 <BR>-fthis-is-varialble <BR>　　就是向传统c++看齐,可以使用this当一般变量使用. <BR>　　 <BR>-fcond-mismatch <BR>　　允许条件表达式的第二和第三参数类型不匹配,表达式的值将为void类型 <BR>　　 <BR>-funsigned-char <BR>-fno-signed-char <BR>-fsigned-char <BR>-fno-unsigned-char <BR>　　这四个参数是对char类型进行设置,决定将char类型设置成unsigned char(前两个参 <BR>数)或者 signed char(后两个参数) <BR>　　 <BR>-include file <BR>　　包含某个代码,简单来说,就是便以某个文件,需要另一个文件的时候,就可以用它设 <BR>定,功能就相当于在代码中使用#include&lt;filename&gt; <BR>　　例子用法: <BR>　　gcc hello.c -include /root/pianopan.h <BR>　　 <BR>-imacros file <BR>　　将file文件的宏,扩展到gcc/g++的输入文件,宏定义本身并不出现在输入文件中 <BR>　　 <BR>-Dmacro <BR>　　相当于C语言中的#define macro <BR>　　 <BR>-Dmacro=defn <BR>　　相当于C语言中的#define macro=defn <BR>　　 <BR>-Umacro <BR>　　相当于C语言中的#undef macro <BR>-undef <BR>　　取消对任何非标准宏的定义 <BR>　　 <BR>-Idir <BR>　　在你是用#include"file"的时候,gcc/g++会先在当前目录查找你所制定的头文件,如 <BR>果没有找到,他回到缺省的头文件目录找,如果使用-I制定了目录,他 <BR>　　回先在你所制定的目录查找,然后再按常规的顺序去找. <BR>　　对于#include&lt;file&gt;,gcc/g++会到-I制定的目录查找,查找不到,然后将到系统的缺 <BR>省的头文件目录查找 <BR>　　 <BR>-I- <BR>　　就是取消前一个参数的功能,所以一般在-Idir之后使用 <BR>　　 <BR>-idirafter dir <BR>　　在-I的目录里面查找失败,讲到这个目录里面查找. <BR>　　 <BR>-iprefix prefix <BR>-iwithprefix dir <BR>　　一般一起使用,当-I的目录查找失败,会到prefix+dir下查找 <BR>　　 <BR>-nostdinc <BR>　　使编译器不再系统缺省的头文件目录里面找头文件,一般和-I联合使用,明确限定头 <BR>文件的位置 <BR>　　 <BR>-nostdin C++ <BR>　　规定不在g++指定的标准路经中搜索,但仍在其他路径中搜索,.此选项在创libg++库 <BR>使用 <BR>　　 <BR>-C <BR>　　在预处理的时候,不删除注释信息,一般和-E使用,有时候分析程序，用这个很方便的 <BR><BR>　　 <BR>-M <BR>　　生成文件关联的信息。包含目标文件所依赖的所有源代码你可以用gcc -M hello.c <BR>来测试一下，很简单。 <BR>　　 <BR>-MM <BR>　　和上面的那个一样，但是它将忽略由#include&lt;file&gt;造成的依赖关系。 <BR>　　 <BR>-MD <BR>　　和-M相同，但是输出将导入到.d的文件里面 <BR>　　 <BR>-MMD <BR>　　和-MM相同，但是输出将导入到.d的文件里面 <BR>　　 <BR>-Wa,option <BR>　　此选项传递option给汇编程序;如果option中间有逗号,就将option分成多个选项,然 <BR>后传递给会汇编程序 <BR>　　 <BR>-Wl.option <BR>　　此选项传递option给连接程序;如果option中间有逗号,就将option分成多个选项,然 <BR>后传递给会连接程序. <BR>　　 <BR>-llibrary <BR>　　制定编译的时候使用的库 <BR>　　例子用法 <BR>　　gcc -lcurses hello.c <BR>　　使用ncurses库编译程序 <BR>　　 <BR>-Ldir <BR>　　制定编译的时候，搜索库的路径。比如你自己的库，可以用它制定目录，不然 <BR>　　编译器将只在标准库的目录找。这个dir就是目录的名称。 <BR>　　 <BR>-O0 <BR>-O1 <BR>-O2 <BR>-O3 <BR>　　编译器的优化选项的4个级别，-O0表示没有优化,-O1为缺省值，-O3优化级别最高　 <BR>　 　　 <BR>-g <BR>　　只是编译器，在编译的时候，产生调试信息。 <BR>　　 <BR>-gstabs <BR>　　此选项以stabs格式声称调试信息,但是不包括gdb调试信息. <BR>　　 <BR>-gstabs+ <BR>　　此选项以stabs格式声称调试信息,并且包含仅供gdb使用的额外调试信息. <BR>　　 <BR>-ggdb <BR>　　此选项将尽可能的生成gdb的可以使用的调试信息. <BR>-static <BR>　　此选项将禁止使用动态库，所以，编译出来的东西，一般都很大，也不需要什么 <BR>动态连接库，就可以运行. <BR>-share <BR>　　此选项将尽量使用动态库，所以生成文件比较小，但是需要系统由动态库. <BR>-traditional <BR>　　试图让编译器支持传统的C语言特性 <BR>[参考资料] <BR>-Linux/UNIX高级编程 <BR>　　中科红旗软件技术有限公司编著.清华大学出版社出版 <BR>-Gcc man page <BR>　　 <BR>[ChangeLog] <BR>-2002-08-10 <BR>　　ver 0.1 发布最初的文档 <BR>-2002-08-11 <BR>　　ver 0.11 修改文档格式 <BR>-2002-08-12 <BR>　　ver 0.12 加入了对静态库，动态库的参数 <BR>-2002-08-16 <BR>　　ver 0.16 增加了gcc编译的4个阶段的命令 <BR>运行 gcc/egcs <BR>**********运行 gcc/egcs*********************** <BR>　　GCC 是 GNU 的 C 和 C++ 编译器。实际上，GCC 能够编译三种语言：C、C++ 和 O <BR>bject C（C 语言的一种面向对象扩展）。利用 gcc 命令可同时编译并连接 C 和 C++ <BR>源程序。 <BR>　　如果你有两个或少数几个 C 源文件，也可以方便地利用 GCC 编译、连接并生成可 <BR>执行文件。例如，假设你有两个源文件 main.c 和 factorial.c 两个源文件，现在要编 <BR>译生成一个计算阶乘的程序。 <BR>代码: <BR>----------------------- <BR>清单 factorial.c <BR>----------------------- <BR>int factorial (int n) <BR>{ <BR>　　if (n &lt;= 1) <BR>　　　return 1; <BR>　　else <BR>　　　return factorial (n - 1) * n; <BR>} <BR>----------------------- <BR>清单 main.c <BR>----------------------- <BR>#include　&lt;stdio.h&gt; <BR>#include　&lt;unistd.h&gt; <BR>int factorial (int n); <BR>int main (int argc, char **argv) <BR>{ <BR>　　int n; <BR>　　if (argc &lt; 2) <BR>　　{ <BR>　　　　printf ("Usage: %s n\n", argv [0]); <BR>　　　　return -1; <BR>　　} <BR>　　else <BR>　　{ <BR>　　　n = atoi (argv[1]); <BR>　　　printf ("Factorial of %d is %d.\n", n, factorial (n)); <BR>　　 } <BR>　　return 0; <BR>} <BR>----------------------- <BR>利用如下的命令可编译生成可执行文件，并执行程序： <BR>$ gcc -o factorial main.c factorial.c <BR>$ ./factorial 5 <BR>Factorial of 5 is 120. <BR>　　GCC 可同时用来编译 C 程序和 C++ 程序。一般来说，C 编译器通过源文件的后缀 <BR>名来判断是 C 程序还是 C++ 程序。在 Linux 中，C 源文件的后缀名为 .c，而 C++ 源 <BR>文件的后缀名为 .C 或 .cpp。但是，gcc 命令只能编译 C++ 源文件，而不能自动和 C <BR>++ 程序使用的库连接。因此，通常使用 g++ 命令来完成 C++ 程序的编译和连接，该程 <BR>序会自动调用 gcc 实现编译。假设我们有一个如下的 C++ 源文件（hello.C）： <BR>#include &lt;iostream&gt; <BR>void main (void) <BR>{ <BR>　　cout &lt;&lt; "Hello, world!" &lt;&lt; endl; <BR>} <BR>则可以如下调用 g++ 命令编译、连接并生成可执行文件： <BR>$ g++ -o hello hello.C <BR>$ ./hello <BR>Hello, world! <BR>**********************gcc/egcs 的主要选项********* <BR>gcc 命令的常用选项 <BR>选项 解释 <BR>-ansi 只支持 ANSI 标准的 C 语法。这一选项将禁止 GNU C 的某些特色， <BR>例如 asm 或 typeof 关键词。 <BR>-c 只编译并生成目标文件。 <BR>-DMACRO 以字符串“1”定义 MACRO 宏。 <BR>-DMACRO=DEFN 以字符串“DEFN”定义 MACRO 宏。 <BR>-E 只运行 C 预编译器。 <BR>-g 生成调试信息。GNU 调试器可利用该信息。 <BR>-IDIRECTORY 指定额外的头文件搜索路径DIRECTORY。 <BR>-LDIRECTORY 指定额外的函数库搜索路径DIRECTORY。 <BR>-lLIBRARY 连接时搜索指定的函数库LIBRARY。 <BR>-m486 针对 486 进行代码优化。 <BR>-o FILE 生成指定的输出文件。用在生成可执行文件时。 <BR>-O0 不进行优化处理。 <BR>-O 或 -O1 优化生成代码。 <BR>-O2 进一步优化。 <BR>-O3 比 -O2 更进一步优化，包括 inline 函数。 <BR>-shared 生成共享目标文件。通常用在建立共享库时。 <BR>-static 禁止使用共享连接。 <BR>-UMACRO 取消对 MACRO 宏的定义。 <BR>-w 不生成任何警告信息。 <BR>-Wall 生成所有警告信息。 </FONT><img src ="http://www.cppblog.com/SEMAN/aggbug/1440.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/SEMAN/" target="_blank">味全每日C++</a> 2005-11-30 13:36 <a href="http://www.cppblog.com/SEMAN/archive/2005/11/30/1440.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Window+GCC+CDT用Eclipse开发C、C++</title><link>http://www.cppblog.com/SEMAN/archive/2005/11/30/1439.html</link><dc:creator>味全每日C++</dc:creator><author>味全每日C++</author><pubDate>Wed, 30 Nov 2005 04:57:00 GMT</pubDate><guid>http://www.cppblog.com/SEMAN/archive/2005/11/30/1439.html</guid><wfw:comment>http://www.cppblog.com/SEMAN/comments/1439.html</wfw:comment><comments>http://www.cppblog.com/SEMAN/archive/2005/11/30/1439.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/SEMAN/comments/commentRss/1439.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/SEMAN/services/trackbacks/1439.html</trackback:ping><description><![CDATA[<SPAN class=javascript id=text53262 twffan="done"><FONT size=2><B><FONT color=hotpink><BR>Author：sungo</FONT></B> (<A href="mailto:TW@Javaworld">TW@Javaworld</A>)&nbsp; 文章原文：<A href="http://www.javaworld.com.tw/jute/post/view?bid=10&amp;id=53262&amp;sty=1&amp;tpg=1&amp;age=0">http://www.javaworld.com.tw/jute/post/view?bid=10&amp;id=53262&amp;sty=1&amp;tpg=1&amp;age=0</A><BR><BR>Eclipse除了可以開發Java之外，還支援了許多語言，現在先介紹 <BR>C、C++的開發環境設定，以後有機會再介紹其它的。Enjoy it！ <BR><BR>OS：Windows XP Professional SP1 <BR>使用版本：Eclipse 2.1.2 <BR><BR>一.首先要下載CDT，Eclipse 2.1.2使用者，請下載這項： <BR>CDT 1.2 Full for Windows R2.1.1 1.2.0 GA - Full - Windows。 <BR>Eclipse 2.1.3使用者請下載：CDT 1.2.1。 <BR>Eclipse 3.0 M7使用者請下載：CDT 2.0 M7。 <BR>Eclipse 3.0 M8使用者請下載：CDT 2.0 M8。 <BR>Eclipse 3.0 M9使用者請下載：CDT 2.0 M9。 <BR>下載網址：</FONT><A class=ilink href="http://www.eclipse.org/cdt/" target=_blank><FONT size=2>http://www.eclipse.org/cdt/</FONT></A><FONT size=2> <BR><BR>安裝：將解壓縮後的features、plugins整個資料夾複製到Eclipse安裝資料 <BR>裡，重新開啟Eclipse即可。 <BR><BR>二.下載可在Windows上使用的GNU C、C++編譯器，這裡要下載的是：MinGW。 <BR>Download頁面很長的一串，請選擇這個版本： <BR><FONT color=red>MinGW bin MinGW-3.1.0-1.exe 14863 kb Sep 15, 2003 11:14</FONT> <BR>下載網址：</FONT><A class=ilink href="http://www.mingw.org/download.shtml" target=_blank><FONT size=2>http://www.mingw.org/download.shtml</FONT></A><FONT size=2> <BR><BR>安裝：安裝目錄選C槽，然後狂點下一步(Next)就行了。安裝完後路徑是這 <BR>樣-&gt;C:\MinGW。 <BR><BR>三.先在Command Line模式下測試編譯與執行。先將C:\MinGW\bin底下的 <BR>mingw32-make.exe更名為make.exe，因為待會在Eclipse使用時它預設 <BR>會抓系統裡make這個檔名而不是mingw32-make。 <BR><BR></FONT><FONT size=2><FONT color=hotpink>(註：如果不更名或是還有其他make程式時，也可以在稍後的Eclipse設定 <BR>中，在make targets view的地方，新增一個task時，build command 取消 <BR>use default , 使用 mingw32-make，或在project properties-&gt;make project -&gt; <BR>將make 改為 mingw32-make ) </FONT><FONT color=red>-- 由<B> snpshu</B> 補充。</FONT> <BR><BR>在環境變數裡加入下列設定： <BR>PATH ： C:\MinGW\bin; (如果系統已經有裝其它C/C++編譯器，請把C:\MinGW\bin加在最前面。) <BR>LIBRARY_PATH ：C:\MinGW\lib <BR>C_INCLUDE_PATH ：C:\MinGW\include <BR>CPLUS_INCLUDE_PATH ：C:\MinGW\include\c++\3.2.3;C:\MinGW\include\c++\3.2.3\mingw32; <BR>C:\MinGW\include\c++\3.2.3\backward;C:\MinGW\include <BR><BR>先使用文字編輯器編寫測試用的原始檔，檔名：main.cpp。 <BR></FONT>
<TABLE class=java style="WIDTH: 413px; HEIGHT: 136px" cellSpacing=1 cellPadding=3 bgColor=#999999 border=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=1 bgColor=#dddddd><PRE><FONT color=#555555 size=2>1<BR>2<BR>3<BR>4<BR>5<BR>6<BR>7<BR>8<BR></FONT></PRE></TD>
<TD vAlign=top align=left bgColor=#ffffff><PRE><FONT size=2>#include &lt;iostream&gt;
using namespace std;
&nbsp;
<FONT class=java-reserved_word><B>int</B></FONT> main(<FONT class=java-reserved_word><B>void</B></FONT>) <FONT class=java-bracket>{</FONT>
    cout &lt;&lt; <FONT class=java-string>"Can You Feel My World？"</FONT> ;
&nbsp;
    <FONT class=java-reserved_word><B>return</B></FONT> 0;
<FONT class=java-bracket>}</FONT></FONT></PRE></TD></TR></TBODY></TABLE><BR><FONT size=2>在Command Line下編譯指令： </FONT>
<TABLE class=java cellSpacing=1 cellPadding=3 bgColor=#999999 border=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=1 bgColor=#dddddd><PRE><FONT color=#555555 size=2>1<BR></FONT></PRE></TD>
<TD vAlign=top align=left bgColor=#ffffff><PRE><FONT size=2>C:\g++ main.cpp -O3 -o hello</FONT></PRE></TD></TR></TBODY></TABLE><BR><FONT size=2>(O3的O是英文大寫"歐") <BR>編譯成功後：便會產生hello.exe的執行檔。 <BR>執行畫面如下： </FONT>
<TABLE class=java cellSpacing=1 cellPadding=3 bgColor=#999999 border=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=1 bgColor=#dddddd><PRE><FONT color=#555555 size=2>1<BR>2<BR>3<BR>4<BR>5<BR>6<BR>7<BR>8<BR>9<BR>10<BR></FONT></PRE></TD>
<TD vAlign=top align=left bgColor=#ffffff><PRE><FONT size=2>Microsoft Windows XP [版本 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
&nbsp;
C:\Documents and Settings\Sungo&gt;cd\
&nbsp;
C:\&gt;g++ main.cpp -O3 -o hello
&nbsp;
C:\&gt;hello
Can You Feel My World？
C:\&gt;
</FONT></PRE></TD></TR></TBODY></TABLE><BR><FONT size=2>註：-O3 旗標表示採最高級編譯最佳化，編譯速度最慢，但產生的執行檔 <BR>檔案會最小，執行速度會最快；-o 旗標表示將編譯完的*.exe重新更名。 <BR><BR>◎步驟一.開啟Eclipse後，首先先開啟C/C++專用視景。 <BR>Windows-&gt;Open Perspective-&gt;C/C++ Development <BR><BR>◎步驟二.建立一個C++用的專案。 <BR>File-New-&gt;Project-&gt;C++-&gt;Standard Make C++ Project <BR>(接下來的步驟跟建立一般的Java專案一樣，皆採預設即可) <BR><BR>◎步驟三.把我們剛剛寫的main.cpp import進來，加到專案裡。 <BR>File-&gt;Import-&gt;File System-&gt;瀏覽C:\main.cpp <BR><BR>◎步驟四.建立一個makefile。 <BR>File-&gt;New-&gt;File，檔案名稱填：makefile。(不需打副檔名) <BR><BR>makefile內容如下： </FONT>
<TABLE class=java cellSpacing=1 cellPadding=3 bgColor=#999999 border=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=1 bgColor=#dddddd><PRE><FONT color=#555555 size=2>1<BR>2<BR></FONT></PRE></TD>
<TD vAlign=top align=left bgColor=#ffffff><PRE><FONT size=2>all:
    g++  main.cpp -g -o run
</FONT></PRE></TD></TR></TBODY></TABLE><BR><FONT size=2><FONT color=red>注意：makefile縮排要以Tab鍵作縮排，不能以空格4作縮排， <BR>否則Build會有問題。</FONT> <BR><BR>◎步驟五.設定Make Targets。 <BR>Windows-Show View-&gt;Make Targets <BR>在Make Targets視窗裡按滑鼠右鍵，Add Build Target <BR>，name打：編譯。Build Target打：all。 <BR><BR>◎步驟六.編譯。 <BR>在剛剛建立的Make Targets "編譯" 上點滑鼠2下，即會開始編譯， <BR>此時我們可以發現hello.exe已經產生在我們專案下了。可在底下 <BR>C-Build視窗看到以下輸出結果： </FONT>
<TABLE class=java cellSpacing=1 cellPadding=3 bgColor=#999999 border=0>
<TBODY>
<TR>
<TD vAlign=top align=left width=1 bgColor=#dddddd><PRE><FONT color=#555555 size=2>1<BR>2<BR></FONT></PRE></TD>
<TD vAlign=top align=left bgColor=#ffffff><PRE><FONT size=2>make -k all 
g++  main.cpp -g -o run
</FONT></PRE></TD></TR></TBODY></TABLE><BR><BR><FONT size=2>◎步驟七. *.exe執行前設定。因為在Windows下Run，所以要先作個設定 <BR>，請開啟Project-&gt;Properties-&gt;C/C++ Make Project-&gt;Binary Parser頁面。 <BR>Binary Parser下拉式選單，將ELF Parser改成PE Windows Parser。 <BR><BR>◎步驟八.執行。 <BR>Run-&gt;Run as-&gt;C Local Application。 <BR>在底下Consloe視窗看到hello.exe的執行結果。 <BR><BR>註：當原始檔有修改，要重新編譯時，只要滑鼠雙擊我們在步驟五 <BR>所建立的Make Targets "編譯"，即可Rebuilding。 <BR><BR></FONT></SPAN><img src ="http://www.cppblog.com/SEMAN/aggbug/1439.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/SEMAN/" target="_blank">味全每日C++</a> 2005-11-30 12:57 <a href="http://www.cppblog.com/SEMAN/archive/2005/11/30/1439.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>My Onepage English Resume</title><link>http://www.cppblog.com/SEMAN/archive/2005/10/27/868.html</link><dc:creator>味全每日C++</dc:creator><author>味全每日C++</author><pubDate>Thu, 27 Oct 2005 08:36:00 GMT</pubDate><guid>http://www.cppblog.com/SEMAN/archive/2005/10/27/868.html</guid><wfw:comment>http://www.cppblog.com/SEMAN/comments/868.html</wfw:comment><comments>http://www.cppblog.com/SEMAN/archive/2005/10/27/868.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cppblog.com/SEMAN/comments/commentRss/868.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/SEMAN/services/trackbacks/868.html</trackback:ping><description><![CDATA[<DIV style="BORDER-RIGHT: medium none; PADDING-RIGHT: 0cm; BORDER-TOP: medium none; PADDING-LEFT: 0cm; PADDING-BOTTOM: 1pt; BORDER-LEFT: medium none; PADDING-TOP: 0cm; BORDER-BOTTOM: windowtext 2.25pt solid; mso-element: para-border-div">
<P class=MsoNormal style="BORDER-RIGHT: medium none; PADDING-RIGHT: 0cm; BORDER-TOP: medium none; PADDING-LEFT: 0cm; PADDING-BOTTOM: 0cm; MARGIN: 0cm 0cm 0pt; BORDER-LEFT: medium none; PADDING-TOP: 0cm; BORDER-BOTTOM: medium none; tab-stops: -36.0pt 0cm 31.5pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt 612.0pt 648.0pt 684.0pt 720.0pt 756.0pt 792.0pt 828.0pt 864.0pt 900.0pt 936.0pt 1548.0pt; mso-border-bottom-alt: solid windowtext 2.25pt; mso-padding-alt: 0cm 0cm 1.0pt 0cm; mso-hyphenate: none"><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US style="FONT-SIZE: 16pt; FONT-FAMILY: Univers; mso-bidi-font-size: 12.0pt">Yin Feilong<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></B></P></DIV>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt; tab-stops: -36.0pt 0cm 31.5pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt 612.0pt 648.0pt 684.0pt 720.0pt 756.0pt 792.0pt 828.0pt 864.0pt 900.0pt 936.0pt 1548.0pt; mso-hyphenate: none"><STRONG><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-weight: normal">Address</SPAN></STRONG><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #333333; FONT-FAMILY: Verdana">: </SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-bidi-font-family: 'Times New Roman'">Room 110 Building <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:Street w:st="on"><st1:address w:st="on">11 Nanjing University Hankou Road</st1:address></st1:Street> 22, <st1:place w:st="on"><st1:City w:st="on">Nanjing</st1:City>, <st1:State w:st="on">Jiangsu</st1:State></st1:place> Province 210093 </SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; COLOR: #333333; FONT-FAMILY: Verdana"><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt; tab-stops: -36.0pt 0cm 31.5pt 72.0pt 108.0pt 144.0pt 179.75pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt 612.0pt 648.0pt 684.0pt 720.0pt 756.0pt 792.0pt 828.0pt 864.0pt 900.0pt 936.0pt 1548.0pt; mso-hyphenate: none"><STRONG><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-weight: normal">Phone</SPAN></STRONG><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-bidi-font-family: 'Times New Roman'">: (86-25) 8359-4465<SPAN style="mso-tab-count: 1">&nbsp; </SPAN>+86135-8519-7909<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; tab-stops: -36.0pt 0cm 21.5pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt 612.0pt 648.0pt 684.0pt 720.0pt 756.0pt 792.0pt 828.0pt 864.0pt 900.0pt 936.0pt 1548.0pt; mso-hyphenate: none"><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-bidi-font-family: 'Times New Roman'"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN><B style="mso-bidi-font-weight: normal">E-mail</B>: <A href="mailto:yinfeil@gmail.com">yinfeil@gmail.com</A> <SPAN style="mso-tab-count: 1"></SPAN><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Homepage</SPAN></B><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">: <A href="http://www.seman.cn/">http://www.seman.cn</A></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-bidi-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana">Objective:<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 20pt; mso-char-indent-count: 2.0"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-weight: bold; mso-bidi-font-family: 'Courier New'"><FONT color=#800080>C++ Software Design Engineer</FONT></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana; mso-bidi-font-size: 10.5pt; mso-bidi-font-family: 'Courier New'">Education:<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-FAMILY: Verdana; mso-bidi-font-weight: bold; mso-bidi-font-family: 'Courier New'"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-weight: bold; mso-bidi-font-family: 'Courier New'">B.E Department of Information Management, <st1:place w:st="on"><st1:PlaceName w:st="on">Nanjing</st1:PlaceName> <st1:PlaceType w:st="on">University</st1:PlaceType></st1:place>.<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>Aug.2002 – Present<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-weight: bold; mso-bidi-font-family: 'Courier New'"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>GPA: Overall: 3.2/4.0<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana; mso-bidi-font-size: 10.5pt">Academic Main Courses:</SPAN></STRONG><B><SPAN lang=EN-US style="FONT-FAMILY: Verdana; mso-bidi-font-size: 10.5pt"><o:p></o:p></SPAN></B></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Development Tools of Management Information System <o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Management Information Systems and software Engineering <o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Information Analysis and Policy Making, Information Retrieval and Storage <o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Programming Languages (C), Data Structures, Database Systems <o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Computer Network, System Science and Techniques, Information Organization<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana">Computer Abilities:<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>Certification:<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt">National Computer Rank Examination Grade Three(NCRE-3)<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>Qualification of Computer and Software Technology Proficiency: Software Designer<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana; mso-bidi-font-size: 10.5pt; mso-bidi-font-weight: normal">Skills:<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt; TEXT-INDENT: 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana">Expert: <SPAN style="mso-tab-count: 1"></SPAN>C/C++, Visual Foxpro, HTML, Asp, CSS<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt; TEXT-INDENT: 21pt"><SPAN lang=EN-US style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">Intermediate</SPAN><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana">: Rational Rose, SQL Server, XML, Java, Project 2003<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt; TEXT-INDENT: 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana">Beginner: C#, Asp.net, Visual C++, Oracle<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana">English Skills:<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 18pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana">Have a good command of both spoken and written English. Past CET-4<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana">Experiences:<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-FAMILY: Verdana"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana; mso-bidi-font-weight: normal">Developer. Lily-Studio of <st1:place w:st="on"><st1:PlaceName w:st="on">Nanjing</st1:PlaceName> <st1:PlaceType w:st="on">University</st1:PlaceType></st1:place>, June 2003 – May 2004<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-FAMILY: Verdana"><SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></STRONG><SPAN lang=EN-US style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana">Designed and implemented the Community of Lily Alumni<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>Editor in chief of the magazine Network Guide<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana; mso-bidi-font-weight: normal">Lab Manager. Information Technology Lab. June 2004 – Present<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt; TEXT-INDENT: 21pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 'Courier New'">Supervisor of Network Application, </SPAN></STRONG><SPAN lang=EN-US style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 'Courier New'">Designed and implemented<STRONG><SPAN style="FONT-WEIGHT: normal; FONT-FAMILY: Verdana; mso-bidi-font-family: 'Courier New'"> FTP</SPAN></STRONG></SPAN><STRONG><SPAN style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; mso-bidi-font-family: 'Courier New'">、</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 'Courier New'">SMTP-based mail Server</SPAN></STRONG><STRONG><SPAN style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; mso-bidi-font-family: 'Courier New'">、</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 'Courier New'">VPN </SPAN></STRONG><STRONG><SPAN style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana; mso-bidi-font-family: 'Courier New'">、</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana; mso-bidi-font-family: 'Courier New'">Web Server<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt 21pt; TEXT-INDENT: 21pt"><SPAN lang=EN-US style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana">Designed and implemented 2 websites of Department of Information Management and <st1:place w:st="on"><st1:PlaceType w:st="on">School</st1:PlaceType> of <st1:PlaceName w:st="on">Public</st1:PlaceName></st1:place>, using ASP and ACCESS<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"><SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>Designed and implemented the platform of Tech-Learn Information<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; FONT-FAMILY: Verdana; mso-bidi-font-size: 12.0pt"><SPAN style="mso-tab-count: 2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>Translate some parts of Web-based Analysis for competitive.<o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="FONT-FAMILY: Verdana">Honors:<SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp; </SPAN><o:p></o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US><SPAN style="mso-tab-count: 1">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana">Football</SPAN></STRONG><STRONG><SPAN style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: 宋体; mso-ascii-font-family: Verdana; mso-hansi-font-family: 'Times New Roman'">、</SPAN></STRONG><STRONG><SPAN lang=EN-US style="FONT-WEIGHT: normal; FONT-SIZE: 9pt; FONT-FAMILY: Verdana; mso-hansi-font-family: 'Times New Roman'">Ping pong</SPAN></STRONG><SPAN lang=EN-US style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana"><o:p></o:p></SPAN></P><img src ="http://www.cppblog.com/SEMAN/aggbug/868.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/SEMAN/" target="_blank">味全每日C++</a> 2005-10-27 16:36 <a href="http://www.cppblog.com/SEMAN/archive/2005/10/27/868.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>