filmov
tv
Number of String object created on Java heap

Показать описание
It explains how many java objects are created when we declare string in different format.
String x = new String("A");
String y = "A";
String z = x;
Basic interview questions.
String x = new String("A");
String y = "A";
String z = x;
Basic interview questions.