2008年8月20日

Mature, dynamic and honest.思想成熟、精明能干、为人诚实。

Excellent ability of systematical management.有极强的系统管理能力。

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. 个性稳重、具高度责任感。

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. 愿意在压力下工作,并具领导素质。

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. 有创业能力,并能独立地从业。

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. 有积极的工作态度,愿意和能够在没有监督的情况下勤奋地工作。

posted @ 2008-08-20 10:01 Robert Su 阅读(207) | 评论 (0)编辑 收藏


2008年3月20日

广域网上基于图像数据挖掘系统设计的探讨.pdf
基于内容的视频检索关键技术研究.pdf
基于视频的数据挖掘系统的研究.pdf
基于统计与可视化的新闻视频挖掘.pdf
视频层次结构挖掘.pdf
视频内容分析系统的结构设计与应用.pdf
视频挖掘概念技术与应用.pdf
视频挖掘技术综述.pdf
一种集成数据挖掘的自动视频分类方法.pdf

备忘

posted @ 2008-03-20 13:29 Robert Su 阅读(129) | 评论 (0)编辑 收藏


2008年3月13日

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

posted @ 2008-03-13 11:46 Robert Su 阅读(109) | 评论 (0)编辑 收藏


2008年3月11日

在初始化一个类,生成一个实例的时候;newInstance() 和 new 有什么区别?
用newInstance与用new是区别的,区别在于创建对象的方式不一样,前者是使用类加载机制,那么为什么会有两种创建对象方式?这个就要从可伸缩、可扩展,可重用等软件思想上解释了。
Java中工厂模式经常使用newInstance来创建对象,因此从为什么要使用工厂模式上也可以找到具体答案。
例如:
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类名称,优点:无论A类怎么变化,上述代码不变,甚至可以更换A的兄弟类B , C , D....等,只要他们继承Ainterface就可以。
从jvm的角度看,我们使用new的时候,这个要new的类可以没有加载;
但是使用newInstance时候,就必须保证:1、这个类已经加载;2、这个类已经连接了。而完成上面两个步骤的正是class的静态方法forName()方法,这个静态方法调用了启动类加载器(就是加载java API的那个加载器)。
有了上面jvm上的理解,那么我们可以这样说,newInstance实际上是把new这个方式分解为两步,即,首先调用class的加载方法加载某个类,然后实例化。
这样分步的好处是显而易见的。我们可以在调用class的静态加载方法forName时获得更好的灵活性,提供给了我们降耦的手段。

[补充:]
newInstance: 弱类型。低效率。只能调用无参构造。
new: 强类型。相对高效。能调用任何public构造。

posted @ 2008-03-11 16:44 Robert Su 阅读(294) | 评论 (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 阅读(162) | 评论 (0)编辑 收藏


仅列出标题  下一页

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

Copyright © Robert Su