热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

Core Java 面试题与答案

Test your skills through the online practice test: Core Java Quiz Online Practice Test

问题 216. How many static init can you have ?

As many as you want, but the static initializers and class variable initializers are executed in textual order and may not refer to class variables declared in the class whose declarations appear textually after the use, even though these class variables are in scope.

这有帮助吗? 添加评论 查看评论
 

问题 217. What is mutable object and immutable object?

If a object value is changeable then we can call it as Mutable object. (Ex., StringBuffer, ') If you are not allowed to change the value of an object, it is immutable object. (Ex., String, Integer, Float, ')

这有帮助吗? 添加评论 查看评论
 

问题 218. What is the basic difference between string and stringbuffer object?

String is an immutable object. StringBuffer is a mutable object.

这有帮助吗? 添加评论 查看评论
 

问题 219. What is the byte range?

128 to 127

这有帮助吗? 添加评论 查看评论
 

问题 220. Can a double value be cast to a byte?

Yes, a double value can be cast to a byte.

这有帮助吗? 添加评论 查看评论
 

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。