Home > Java > Javagetting Started > What is the function of final keyword in java

What is the function of final keyword in java

王林
Release: 2020-06-11 16:51:19
forward
2350 people have browsed it

What is the function of final keyword in java

The final keyword is used to modify classes, properties and methods.

(Video tutorial recommendation: java video tutorial)

1. Classes modified by final cannot be inherited;

2. Classes modified by final The method cannot be overridden;

3. The variable modified by final cannot be changed. What is immutable by final modification is the reference of the variable, not the content pointed by the reference. The content pointed by the reference can be Changed;

Recommended tutorial: java entry program

The above is the detailed content of What is the function of final keyword in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template