1、一 请说明下列关键字的作用:static, final, finally, finalize, instanceof, Class.forName(*)二 请写出你所知道的 JAVA 线程同步的方法三 什么是 java 序列化,如何实现 java 序列化四 写出下列程序的输出public class PrintOutTestingpublic static void main(String args)try(new PrintOutTesting().printout(1);System.out.println();(new PrintOutTesting().printout(2); cat
2、ch (Exception e) private void printout(int para)trySystem.out.println(1);if(para!=1)throw new RuntimeException();catch(RuntimeException e)System.out.println(2);throw e;finallySystem.out.println(3); System.out.println(4);五 下面函数可以计算返回一个整数的阶乘,写出你可以看到的程序缺点以及可能的解决方法。public int factorial(int x)return (x=0
3、|x=1)?1:x* factorial(x-1);六 目前 xml 的解析技术通常有哪些?它们有何区别?七 写一个 Singleton(又名单点模式,单例模式)出来。可以通过客户姓名(用 String userName 标示)管理(添加,修改,删除)一些客户数据(用 Object userData 表示) ,并且保证多线程安全。八 写出在 Unix/Linux 系统下,命令 kill -9 23615 的作用九 有一辆车走下坡时 90m/h,走平地时 72 m/h,走上坡时 60 m/h。从甲城开到乙城花 5 小时,从乙城到甲城开 4 小时。求两城之间的距离。 (要求不使用方程,并写出逻辑推
4、理过程)十 写出下面英文的中文翻译As end-users increasingly demand a more sophisticated communications experience tailored to meet their unique needs, putting them at center stage is what it will take to successfully compete. With Alcatel-Lucents user-centric applications and solutions, you will be uniquely positioned to deliver an enriched communications experience to consumers and enterprises anytime, anywhere, and on any device.