


1. What is the difference between basic data types and encapsulated classes
(More interview question recommendations: java interview questions)
The original type is a class, and the reference type is an object.
Use "==" for size comparison of primitive types, and "equals" for size comparison of reference types.
Reference types can be serialized, but primitive types cannot.
Only reference types can be used in collection classes, not primitive types.
Basic data types do not require new, encapsulation classes require new.
Basic data parameters are passed by value, and the encapsulation type is passed by address.
2. The difference between String, StringBuffer, and StringBuilder
String is a string constant, and StringBuffer and StringBuilder are string variables.
The character content created by String is immutable (the underlying char array of String is final), and the character content of StringBuffer and StringBuilder can be lengthened.
StringBuffer is thread-safe, StringBuilder is thread-unsafe, but fast (because it does not consume performance for thread safety).
3. Why is String immutable?
Although String, StringBuffer and StringBuilder are all final classes, the objects they generate are all immutable, and they are all implemented internally by char arrays.
But the difference is that the char array defined in the String class is final, and StringBuffer and StringBuilder both inherit from the AbstractStringBuilder class, and their internal implementation is completed by this parent class, and this parent class The char array defined in the class is just an ordinary private variable and can be appended using append.
(Related tutorial recommendations: java introductory tutorial)
Because AbstractStringBuilder implements the Appendable interface.
4. The difference between runtime exceptions and non-runtime exceptions
Runtime exceptions are runtime errors: such as ClassCastException (class conversion exception), IndexOutOfBoundsException (array out of bounds) ), NullPointerException (null pointer), ArrayStoreException (data storage exception, inconsistent type when operating array), BufferOverflowException exception of IO operation.
(Video tutorial recommendation: java video tutorial)
Non-runtime exceptions are errors that are not visible before running. You can use try and catch to catch exceptions.
5. Briefly describe the characteristics of object-oriented, and give examples to illustrate your understanding of object-oriented.
The characteristics of object-oriented are summarized as encapsulation, inheritance, polymorphism, and reality. The attributes and behavioral characteristics of things in the world are abstracted and put into a container (class), such as human beings. Human actions such as walking, listening, eating, and talking can be attributed to methods in the class, but they are the common denominator of human beings. Height and weight are attributes in the class.
Encapsulation: That is, the part of the code that the designer is unwilling to disclose to the user is encapsulated, through the modifiers private (minimum permissions), public (maximum permissions), protected, default (the default before the attribute is type), these can play a role in limiting the permissions of class objects.
Inheritance: The process in which a subclass inherits a parent class. The inheritor can own all the method attributes of the parent class. The advantage is to improve code reusability. The subclass only needs to write unique functions or fields and can extract the common code into the parent class.
Polymorphism: Unify the subclass method attributes through the parent class, and then through the call, you can use the subclass method arbitrarily to optimize the code volume. The principle is that the subclass rewrites the parent class method.
The above is the detailed content of Java interview questions summarized from many years of development experience - (1). For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1
Easy-to-use and free code editor

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
