欢迎来到天天文库
浏览记录
ID:61937174
大小:138.00 KB
页数:11页
时间:2021-03-31
《架构师面试问题指导性框架培训讲学.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、__________________________________________________架构师面试问题指导性框架________________________________________________________________________________________________________________________________________________________________________________________________________1.Java基础问题1.1.所有Java类的基类
2、是什么?java.lang.Object1.2.Object类中有哪些方法?(说出三个)//对象相关getClass()clone()-protectedtoString()equals(Object)hashCode()//线程相关notify()notifyAll()wait([long[,int]])//GC相关finalize()1.3.equals和==的差别?equals为对象相等。==代表引用相等(即同一个对象)。Object.equals的实现和==相同,但子类可以覆盖此方法,以便实现不同的比较算法,例如String.equals逐字比较。1.4.h
3、ashCode的作用在HashMap或HashSet中,作为杂凑值,以提高查找的性能。Object.hashCode实际上返回的是对象的引用地址,但子类可以覆盖此方法,实现不同的杂凑算法。1.5.hashCode和equals方法的关系如果两个对象equals相等,那么hashCode必须相等。反之,则不一定:hashCode相等,可能equals不等。但这个概率不能太高,否则将增加HashMap的冲突可能性,而降低查找的效率。______________________________________________________________________
4、______________________________1.1.如何停止一个线程?设置一个标记,让线程自行停止。必要时,主线程执行join方法等待子线程完全退出。publicclassTestThread{privatebooleanexit=false;privatevoidgo()throwsException{Threadthread=newThread(newMyRunnable(),"my_thread");System.out.println("PressEntertoexit...");thread.start();System.in.read()
5、;exit=true;thread.join();}privateclassMyRunnableimplementsRunnable{publicvoidrun(){for(inti=1;!exit;i++){System.out.println(Thread.currentThread().getName()+":"+i);try{Thread.sleep(1000);}catch(InterruptedExceptione){}}}}publicstaticvoidmain(String[]args)throwsException{newTestThread()
6、.go();}}事实上,Thread自己有interrupted标志,可以通过Thread.interrupted()或某些方法的InterruptedException来捕获中断标志。程序可改进为:publicclassTestThread{privatebooleanexit=false;privatevoidgo()throwsException{……exit=true;________________________________________________________________________________________________
7、____thread.interrupt();thread.join();}privateclassMyRunnableimplementsRunnable{publicvoidrun(){for(inti=1;!exit;i++){System.out.println(Thread.currentThread().getName()+":"+i);try{Thread.sleep(1000);}catch(InterruptedExceptione){return;}}}}……}1.1.Thread.setDeamon()的含义?一个Daemon线程是一个在背
此文档下载收益归作者所有