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

What is the function of final keyword in java

王林
王林 forward
2020-06-11 16:50:52 2251browse

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!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete