Showing posts with label Why String is an immuatable. Show all posts
Showing posts with label Why String is an immuatable. Show all posts

Why String is an immuatable?

String pool (String intern pool) is a special storage area in Java heap. When a string is created and if the string already exists in the pool, the reference of the existing string will be returned, instead of creating a new object and returning its reference.