hi,
I'm a bit confused about null. As i understand, null is a reserved keyword, represents a void reference and doesn't have a value.
Here's my question. why does this code fragment give output as "nullhi".
String abc = null;
abc+="hi";
System.out.println(abc);
Why is null considered to be a sting here?
Thank You