Pergunta de entrevista da empresa SAS

What is string pool in java ?

Resposta da entrevista

Sigiloso

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.