Pregunta de entrevista de SAS

What is string pool in java ?

Respuesta de la entrevista

Anónimo

28 de mar de 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.