朗讯JAVA笔试题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
一请说明下列关键字的作用:static, final, finally, finalize, instanceof, Class.forName(***)
二请写出你所知道的JA V A线程同步的方法
三什么是java序列化,如何实现java序列化
四写出下列程序的输出
public class PrintOutTesting{
public static void main(String[] args){
try{
(new PrintOutTesting()).printout(1);
System.out.println();
(new PrintOutTesting()).printout(2);
} catch (Exception e) {}
}
private void printout(int para){
try{
System.out.println(1);
if(para!=1)
throw new RuntimeException();
}
catch(RuntimeException e){
System.out.println(2);
throw e;
}
finally{
System.out.println(3);
}
System.out.println(4);
}
}
五下面函数可以计算返回一个整数的阶乘,写出你可以看到的程序缺点以及可能的解决方法。
public int factorial(int x){
return (x==0||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小时。
求两城之间的距离。
(要求不使用方程,并写出逻辑推理过程)
十写出下面英文的中文翻译
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-Lucent’s 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.。