String s = "abc";
This statement creates one String object. But how? Isn't object creation linked to Constructor? How is an object being created here without use of Constructor?
String s = "abc";
This statement creates one String object. But how? Isn't object creation linked to Constructor? How is an object being created here without use of Constructor?