Understanding the Impact of Final on String Comparison in Java
In Java, the equality of strings is typically determined using the equals() method. However, the == operator can also be used for comparison, but its behavior differs when dealing with final strings.
When a String variable is declared final and initialized with a compile-time constant expression, it becomes a constant variable and its value is inlined by the compiler. This inlining leads to a significant difference in the comparison using ==.
Consider the following code example:
String str1="str"; String str2="ing"; String concat=str1+str2; System.out.println(concat=="string"); // false
The comparison in this example returns false because concat is a new String object created at runtime by concatenating str1 and str2.
Now, let's modify the code by declaring str1 and str2 as final:
final String str1="str"; final String str2="ing"; String concat=str1+str2; System.out.println(concat=="string"); // true
In this case, the comparison returns true. This is because when str1 and str2 are declared final, they become constant variables and are inlined at compile time. The concatenation of the two strings is also computed at compile time, resulting in a constant String object with the value "string."
The difference arises because string literals are interned in Java. Interning involves storing a unique instance of a String object in a pool for future reference. When a final String is inlined at compile time and compared with a string literal, the references to the String objects in the intern pool are directly compared, resulting in true.
In summary, when dealing with final strings declared with compile-time constant expressions, the comparison using == will return true if the concatenated value is equal to the other string literal, due to the interning of String objects at compile time.
The above is the detailed content of How Does Declaring Strings as `final` Affect `==` Comparison in Java?. For more information, please follow other related articles on the PHP Chinese website!

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

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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

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.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.