The "final" keyword in Java can be used to define constant values and prevent variables, methods, or classes from being changed or overwritten. Immutability, on the other hand, describes the characteristic of an object remaining in a constant state throughout its existence. Once an object is formed, its value does not change.
Variables, methods, and classes are restricted by the "final" keyword, but immutability goes a step further and ensures that the entire state of the object is preserved.
Let us understand the main differences between final and immutable in this article.
Java Final Version
The final keyword in Java has several characteristics:
Final variable: Its initial value cannot be modified after initialization. They are often used to declare unchangeable or immutable values.
Final methods: They cannot be modified by subclasses, ensuring that they behave consistently. They help maintain the effectiveness of important procedures.
Final classes: They cannot be extended by other classes and their implementation is guaranteed not to be changed. Final classes are often used to build security or utility classes.
Initialization: To ensure that the final variable has a known value, it must be assigned a value during declaration or in the constructor.
Performance: The use of final allows the compiler to optimize the code more successfully, potentially improving performance.
Security: Final improves the security of Java programs by preventing unauthorized changes to sensitive data or behavior.
Immutability in Java
In Java, an immutable class refers to a class whose contents cannot be changed once created. To create an immutable class, follow these requirements:
Declare the class as Final to prevent inheritance.
Declare the data members of the class as private to restrict direct access.
Declare data members as final to prevent modification after the object is created.
Use parameterized constructors to initialize all fields through deep copy to prevent modification through object references.
Return a copy (deep copy) of the object in the getter method instead of the actual object reference to maintain immutability.
By following these properties, you can create your own immutable classes in Java, similar to the built-in immutable classes like Integer, Boolean, Byte, Short and String.
Difference between final and immutable
When it comes to Java programming, it is crucial to understand the difference between "final" and "immutable".
-
Final: Keep object references and allow state mutations
Let's start with "Final". When an object or variable is marked final in Java, it means that the reference cannot be changed to point to another object or variable after giving it a value. It's important to remember that although the reference is fixed, using the associated setter method still allows you to change the object's state. So even though the reference itself cannot be changed, you can still use accessible methods to change the object's internal properties or properties. In other words, final ensures the stability of an object reference while allowing changes to its internal state.
-
Immutability: Immutable Values and Reference Flexibility
Now let’s turn our attention to “immutability”. In Java, immutability means that the actual value of an object cannot be changed after it is created. However, unlike Final, you can modify the reference itself and assign it to another object or variable. This means that while the value of the object remains the same, you can change its reference to point to a different instance.
-
Application and Scope: Final and Immutability
The modifier "final" applies to variables in Java and not to objects. It emphasizes restrictions on changing references or variables while allowing modification of the object's state. Immutability, on the other hand, applies to objects, indicating that their values cannot be changed once created. It is important to understand the difference between these two concepts to ensure that Java programs behave as expected.
-
Meaning: Object address and state variability
When we declare an object or variable as final, we force the permanence of its address. In other words, the reference remains fixed, preventing any changes to the location it points to. In contrast, immutability emphasizes that once an object is created, its state cannot be modified. This means that the object's internal values cannot be changed, thus maintaining its integrity and consistency throughout program execution.
StringerBuffer()
This code demonstrates the difference between the "final" keyword and immutability in Java. The "final" keyword makes a variable constant and prevents reassignment, while immutability means that the object itself cannot be modified.
algorithm
Step 1: Declare variable "sb" as the final StringBuffer object with an initial value of "Hello".
Step 2: Use the append() method to append "TP" to the StringBuffer object referenced by "sb".
Step 3: Print the updated value of "sb", which is "HelloTP".
Step 4: Attempting to reassign the new StringBuffer object to the variable "sb" will result in a compile-time error.
Step 5: Print the value of "sb", but due to the error in the previous step, this line will not be executed.
Example
// Java program to illustrate difference between final and immutability public class Tutorialspoint { public static void main(String[] args) { final StringBuffer sb = new StringBuffer("Hello"); // We can make changes even though reference variable sb is final sb.append("TP"); System.out.println(sb); // Compile time error will appear here. This is because the final variable cannot be reassigned sb = new StringBuffer("Hello World"); System.out.println(sb); } }
Output
Tutorialspoint.java:16: error: cannot assign a value to final variable sb sb = new StringBuffer("Hello World"); ^ 1 error
in conclusion
In summary, "finality" and immutability have very different characteristics in Java. The "final" keyword restricts the reallocation of object references but allows modification of the object's state.
In contrast, immutability prevents the value of an object from being changed, but allows references to be reassigned. Understanding the application and scope of "final" and immutability is important for designing reliable Java programs. When an object or variable is declared final, its address remains fixed, while immutability ensures that the object's internal values cannot be modified. The sample code demonstrates the difference, where "final" prevents reallocation, causing a compile-time error.
The above is the detailed content of Final vs Immutability Comparison in Java. 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的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

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

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


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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
