2008年8月20日

          Mature, dynamic and honest.思想成熟、精明能干、為人誠實(shí)。

          Excellent ability of systematical management.有極強(qiáng)的系統(tǒng)管理能力。

          Ability to work independent1y, mature and resourceful. 能夠獨(dú)立工作、思想成熟、應(yīng)變能力強(qiáng)。

          A person with ability plus flexibility should apply. 需要有能力及適應(yīng)力強(qiáng)的人。

          A stable personality and high sense of responsibility are desirable. 個性穩(wěn)重、具高度責(zé)任感。

          Work well with a multi-cultural and diverse work force. 能夠在不同文化和工作人員的背景下出色地工作。

          Bright,aggressive applicants. 反應(yīng)快、有進(jìn)取心的應(yīng)聘者。

          Ambitious attitude essential. 有雄心壯志。

          Initiative, independent and good communication skill. 積極主動、獨(dú)立工作能力強(qiáng),并有良好的交際技能。

          Willing to work under pressure with leardership quality. 愿意在壓力下工作,并具領(lǐng)導(dǎo)素質(zhì)。

          Willing to assume responsibilities. 應(yīng)聘者須勇于挑重?fù)?dān)。

          Mature, self-motivated and strong interpersonal skills. 思想成熟、上進(jìn)心強(qiáng),并具極豐富的人際關(guān)系技巧。

          Energetic, fashion-minded person. 精力旺盛、思想新潮。

          With a pleasant mature attitude. 開朗成熟。

          Strong determination to succeed.有獲得成功的堅定決心。

          Strong leadership skills. 有極強(qiáng)的領(lǐng)導(dǎo)藝術(shù)。

          Ability to work well with others. 能夠同他人一道很好地工作。

          Highly-motivated and reliable person with excellent health and pleasant personality. 上進(jìn)心強(qiáng)又可靠者,并且身體健康、性格開朗。

          The ability to initiate and operate independently. 有創(chuàng)業(yè)能力,并能獨(dú)立地從業(yè)。

          Strong leadership skill while possessing a great team spirit. 有很高的領(lǐng)導(dǎo)藝術(shù)和很強(qiáng)的集體精神。

          Be highly organized and effecient. 工作很有條理,辦事效率高。

          Willing to learn and progress. 肯學(xué)習(xí)進(jìn)取。

          Good presentation skills. 有良好的表達(dá)能力。

          Positive active mind essential.有積極、靈活的頭腦。

          Ability to deal with personnel at all levels effectively. 善于同各種人員打交道。

          Have positive work attitude and be willing and able to work diligently without supervision. 有積極的工作態(tài)度,愿意和能夠在沒有監(jiān)督的情況下勤奮地工作。

          posted @ 2008-08-20 10:01 Robert Su 閱讀(215) | 評論 (0)編輯 收藏


          2008年3月20日

          廣域網(wǎng)上基于圖像數(shù)據(jù)挖掘系統(tǒng)設(shè)計的探討.pdf
          基于內(nèi)容的視頻檢索關(guān)鍵技術(shù)研究.pdf
          基于視頻的數(shù)據(jù)挖掘系統(tǒng)的研究.pdf
          基于統(tǒng)計與可視化的新聞視頻挖掘.pdf
          視頻層次結(jié)構(gòu)挖掘.pdf
          視頻內(nèi)容分析系統(tǒng)的結(jié)構(gòu)設(shè)計與應(yīng)用.pdf
          視頻挖掘概念技術(shù)與應(yīng)用.pdf
          視頻挖掘技術(shù)綜述.pdf
          一種集成數(shù)據(jù)挖掘的自動視頻分類方法.pdf

          備忘

          posted @ 2008-03-20 13:29 Robert Su 閱讀(141) | 評論 (0)編輯 收藏


          2008年3月13日

          http://www.ibm.com/developerworks/cn/java/j-junitmail/

          posted @ 2008-03-13 11:46 Robert Su 閱讀(118) | 評論 (0)編輯 收藏


          2008年3月11日

          在初始化一個類,生成一個實(shí)例的時候;newInstance() 和 new 有什么區(qū)別?
          用newInstance與用new是區(qū)別的,區(qū)別在于創(chuàng)建對象的方式不一樣,前者是使用類加載機(jī)制,那么為什么會有兩種創(chuàng)建對象方式?這個就要從可伸縮、可擴(kuò)展,可重用等軟件思想上解釋了。
          Java中工廠模式經(jīng)常使用newInstance來創(chuàng)建對象,因此從為什么要使用工廠模式上也可以找到具體答案。
          例如:
          Class c = Class.forName(“A”);factory = (AInterface)c.newInstance();
          其中AInterface是A的接口,如果下面這樣寫,你可能會理解:
          String className = "A";Class c = Class.forName(className);factory = (AInterface)c.newInstance();
          進(jìn)一步,如果下面寫,你可能會理解:
          String className = readfromXMlConfig;//從xml 配置文件中獲得字符串Class c = Class.forName(className);factory = (AInterface)c.newInstance();
          上面代碼就消滅了A類名稱,優(yōu)點(diǎn):無論A類怎么變化,上述代碼不變,甚至可以更換A的兄弟類B , C , D....等,只要他們繼承Ainterface就可以。
          從jvm的角度看,我們使用new的時候,這個要new的類可以沒有加載;
          但是使用newInstance時候,就必須保證:1、這個類已經(jīng)加載;2、這個類已經(jīng)連接了。而完成上面兩個步驟的正是class的靜態(tài)方法forName()方法,這個靜態(tài)方法調(diào)用了啟動類加載器(就是加載java API的那個加載器)。
          有了上面jvm上的理解,那么我們可以這樣說,newInstance實(shí)際上是把new這個方式分解為兩步,即,首先調(diào)用class的加載方法加載某個類,然后實(shí)例化。
          這樣分步的好處是顯而易見的。我們可以在調(diào)用class的靜態(tài)加載方法forName時獲得更好的靈活性,提供給了我們降耦的手段。

          [補(bǔ)充:]
          newInstance: 弱類型。低效率。只能調(diào)用無參構(gòu)造。
          new: 強(qiáng)類型。相對高效。能調(diào)用任何public構(gòu)造。

          posted @ 2008-03-11 16:44 Robert Su 閱讀(308) | 評論 (0)編輯 收藏


          2008年3月7日

           

          <?xml version="1.0" encoding="utf-8"?>
          <project name="test" default="test" basedir=".">

                 
          <!--配置基本屬性-->

                 
          <property name="src" value="src"/>
                 
          <property name="build" value="build"/>
                 
          <property name="lib" value="lib" />
                 
          <property name="dist" value="dist"/>
                 
          <property name="classpath" location="${build}"/>

                 
          <!--配置測試報告的屬性-->

                 
          <property name="report"   value="report"/>
                 
          <property name="report.xml"  value="${report}/junit/xml"/>
                 
          <property name="report.html" value="${report}/junit/html"/>

                  
          <path id="classpath.run">
                        
          <pathelement path="${classpath}"/>
                        
          <fileset dir="${lib}">
                               
          <include name="*.jar"/>
                        
          </fileset>
                 
          </path>

                
          <!--配置測試時classpath-->
                 
          <path id="classpath.test">
                        
          <path refid="classpath.run"/>
                        
          <path location="${dist}/lib/test-${DSTAMP}.jar"/>
                 
          </path>

                 
          <!--任務(wù)初始化-->

                 
          <target name="init" >
                        
          <tstamp/>
                        
          <delete dir="${build}"/>
                        
          <delete dir="${report}"/>
                        
          <delete dir="${dist}"/>
                        
          <mkdir dir="${build}"/>
                 
          </target>

                 
          <!--配置編譯任務(wù)-->

                 
          <target name="compile" depends="init">
                        
          <javac srcdir="${src}" destdir="${build}">
                        
          <classpath refid="classpath.run" />
                        
          </javac>
                
                 
          </target>
                 
          <echo>Build into ${dest.dir}, successfully.</echo>

                 
          <!--配置打包任務(wù)-->
                 
          <target name="dist" depends="compile">
                        
          <mkdir dir="${dist}/lib"/>
                        
          <jar jarfile="${dist}/lib/test-${DSTAMP}.jar" basedir="${build}"/>
                 
          </target>

                 
          <!--配置運(yùn)行任務(wù)-->
                 
          <target name="run" depends="compile, dist">
                   
          <java classname="com.test.HelloWorldTest">
                       
          <classpath>
                               
          <path refid="classpath.run"/>
                        
          </classpath>
                   
          </java>
                 
          </target>
               

                 
          <!--配置JUnit測試,打印測試結(jié)果-->
                 
          <target name="test" depends="compile, dist">

                        
          <mkdir dir="${report.xml}"/>
                        
          <mkdir dir="${report.html}"/>
                        
          <junit printsummary="yes" haltonfailure="no">
                               
          <classpath refid="classpath.run"/>
                               
          <formatter type="xml"/>
                               
          <batchtest fork="yes" todir="${report.xml}">
                                      
          <fileset dir="${src}" includes="**/*test.java"/>
                               
          </batchtest>
                        
          </junit>
                     

                        
          <junitreport todir="${report.html}">
                               
          <fileset dir="${report.xml}">
                                      
          <include name="*.xml"/>
                               
          </fileset>
                               
          <report format="frames" todir="${report.html}"/>
                        
          </junitreport>
                     
          <echo>JUnit Success!</echo>
                 
          </target>
              

          </project>

          posted @ 2008-03-07 14:29 Robert Su 閱讀(174) | 評論 (0)編輯 收藏


          僅列出標(biāo)題  下一頁

          posts - 103, comments - 104, trackbacks - 0, articles - 5

          Copyright © Robert Su

          主站蜘蛛池模板: 莱阳市| 中超| 都兰县| 汨罗市| 喀什市| 蓝山县| 宣恩县| 锦屏县| 丰县| 封丘县| 鞍山市| 张家港市| 衡水市| 闽清县| 杨浦区| 龙井市| 江源县| 徐汇区| 永年县| 唐山市| 兴化市| 高青县| 泰宁县| 漳州市| 衡水市| 宜良县| 山阳县| 利川市| 财经| 吉安市| 南投县| 兴义市| 仪征市| 康定县| 淮安市| 广丰县| 兴仁县| 陇西县| 丰原市| 虎林市| 新建县|