2008年8月20日

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

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

          Ability to work independent1y, mature and resourceful. 能夠獨立工作、思想成熟、應變能力強。

          A person with ability plus flexibility should apply. 需要有能力及適應力強的人。

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

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

          Bright,aggressive applicants. 反應快、有進取心的應聘者。

          Ambitious attitude essential. 有雄心壯志。

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

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

          Willing to assume responsibilities. 應聘者須勇于挑重擔。

          Mature, self-motivated and strong interpersonal skills. 思想成熟、上進心強,并具極豐富的人際關系技巧。

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

          With a pleasant mature attitude. 開朗成熟。

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

          Strong leadership skills. 有極強的領導藝術。

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

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

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

          Strong leadership skill while possessing a great team spirit. 有很高的領導藝術和很強的集體精神。

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

          Willing to learn and progress. 肯學習進取。

          Good presentation skills. 有良好的表達能力。

          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 閱讀(213) | 評論 (0)編輯 收藏


          2008年3月20日

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

          備忘

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


          2008年3月13日

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

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


          2008年3月11日

          在初始化一個類,生成一個實例的時候;newInstance() 和 new 有什么區(qū)別?
          用newInstance與用new是區(qū)別的,區(qū)別在于創(chuàng)建對象的方式不一樣,前者是使用類加載機制,那么為什么會有兩種創(chuàng)建對象方式?這個就要從可伸縮、可擴展,可重用等軟件思想上解釋了。
          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();
          進一步,如果下面寫,你可能會理解:
          String className = readfromXMlConfig;//從xml 配置文件中獲得字符串Class c = Class.forName(className);factory = (AInterface)c.newInstance();
          上面代碼就消滅了A類名稱,優(yōu)點:無論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實際上是把new這個方式分解為兩步,即,首先調(diào)用class的加載方法加載某個類,然后實例化。
          這樣分步的好處是顯而易見的。我們可以在調(diào)用class的靜態(tài)加載方法forName時獲得更好的靈活性,提供給了我們降耦的手段。

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

          posted @ 2008-03-11 16:44 Robert Su 閱讀(303) | 評論 (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>

                 
          <!--任務初始化-->

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

                 
          <!--配置編譯任務-->

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

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

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

                 
          <!--配置JUnit測試,打印測試結果-->
                 
          <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 閱讀(170) | 評論 (0)編輯 收藏


          僅列出標題  下一頁

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

          Copyright © Robert Su

          主站蜘蛛池模板: 泸水县| 西峡县| 崇明县| 平舆县| 邢台县| 镇江市| 沐川县| 永平县| 麻栗坡县| 尉犁县| 吐鲁番市| 阿合奇县| 台中县| 轮台县| 汝南县| 德安县| 东乌| 固原市| 青阳县| 汉沽区| 巢湖市| 石泉县| 连山| 望奎县| 余干县| 广东省| 阿瓦提县| 河北区| 浮山县| 历史| 杨浦区| 台安县| 友谊县| 兴城市| 吉林省| 白朗县| 沁阳市| 昌图县| 长阳| 永定县| 佛教|