If String is not a Primitive datatype in Java and if Java does not support operator overloading then how is this possible
String x = "foo";
System.out.print( x + "bar");
It Prints foobar. How?!
If String is not a Primitive datatype in Java and if Java does not support operator overloading then how is this possible
String x = "foo";
System.out.print( x + "bar");
It Prints foobar. How?!