ImageVerifierCode 换一换
格式:DOCX , 页数:20 ,大小:53.39KB ,
资源ID:14259248      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/14259248.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(Java英文面试题经典Word格式.docx)为本站会员(b****2)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

Java英文面试题经典Word格式.docx

1、 Transient variable cant be serialize. For example if a variable is declared as transient in a Serializable class and the class is written to an ObjectStream, the value of the variable cant be written to the stream instead when the class is retrieved from the ObjectStream the value of the variable b

2、ecomes null. Name the containers which uses Border Layout as their default layout? Containers which uses Border Layout as their default are: window, Frame and Dialog classes. What do you understand by Synchronization? Synchronization is a process of controlling the access of shared resources The Col

3、lection API is a set of classes and interfaces that support operation on collections of objects. These classes and interfaces are more flexible, more powerful, and more regular than the vectors, arrays, and hashtables if effectively replaces. Example of classes: HashSet, HashMap, ArrayList, LinkedLi

4、st, TreeSet and TreeMap.Example of interfaces: Collection, Set, List and Map. Is Iterator a Class or Interface? What is its use? Iterator is an interface which is used to step through the elements of a Collection. What is similarities/difference between an Abstract class and Interface? Differences a

5、re as follows:Interfaces provide a form of multiple inheritance. A class can extend only one other class. Interfaces are limited to public methods and constants with no implementation. Abstract classes can have a partial implementation, protected parts, static methods, etc. A Class may implement sev

6、eral interfaces. But in case of abstract class, a class may extend only one abstract class. Interfaces are slow as it requires extra indirection to find corresponding method in the actual class. Abstract classes are fast. Similarities:Neither Abstract classes or Interface can be instantiated. How to

7、 define an Abstract class? A class containing abstract method is called Abstract class. An Abstract class cant be instantiated. Example of Abstract class:abstract class testAbstractClass protected String myString; public String getMyString() return myString; public abstract string anyAbstractFunctio

8、n(); How to define an Interface? In Java Interface defines the methods but does not implement them. Interface can include constants. A class that implements the interfaces is bound to implement all the methods defined in Interface.Emaple of Interface:public interface sampleInterface public void func

9、tionOne(); public long CONSTANT_ONE = 1000; Explain the user defined Exceptions? User defined Exceptions are the separate Exception classes defined by the user for specific purposed. An user defined can created by simply sub-classing it to the Exception class. This allows custom exceptions to be gen

10、erated (using throw) and caught in the same way as normal exceptions. Example:class myCustomException extends Exception / The class simply has to exist to be an exception Explain the new Features of JDBC 2.0 Core API? The JDBC 2.0 API includes the complete JDBC API, which includes both core and Opti

11、onal Package API, and provides inductrial-strength database computing capabilities. New Features in JDBC 2.0 Core API:Scrollable result sets- using new methods in the ResultSet interface allows programmatically move the to particular row or to a position relative to its current position JDBC 2.0 Cor

12、e API provides the Batch Updates functionality to the java applications. Java applications can now use the ResultSet.updateXXX methods. New data types - interfaces mapping the SQL3 data types Custom mapping of user-defined types (UTDs) Miscellaneous features, including performance hints, the use of

13、character streams, full precision for java.math.BigDecimal values, additional security, and support for time zones in date, time, and timestamp values. Explain garbage collection? Garbage collection is one of the most important feature of Java. Garbage collection is also called automatic memory mana

14、gement as JVM automatically removes the unused variables/objects (value is null) from the memory. User program cannt directly free the object from memory, instead it is the job of the garbage collector to automatically free the objects that are no longer referenced by a program. Every class inherits

15、 finalize() method from java.lang.Object, the finalize() method is called by garbage collector when it determines no more references to the object exists. In Java, it is good idea to explicitly assign null into a variable when no more in use. I Java on calling System.gc() and Runtime.gc(), JVM tries to recycle the unused objects, but there is no guarantee when all the objects will garbage collected.

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1