Question d’entretien chez SAS

What is string pool in java ?

Réponse à la question d'entretien

Utilisateur anonyme

28 mars 2015

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.