+ 1
What is if string stores as String name="";
What is if string stores as String name=" "; Null or garbage value?? Or what's the outpy
2 Respuestas
+ 2
An empty string is also a valid string. The output will simply be nothing.
+ 1
String str_name; link without object.
String str_name = ""; link to object with value "".