JPMorganChase interview question

What problem you face when Java string is being immutable and you copy a line of a file into a String variable for a huge file

Interview Answer

Anonymous

13 Apr 2014

Java internally dedicates a new string for every copy as String is immutable

5