AdamRice32
Programmer
Hi All,
Does anyone know offhand if there's any post-compilation difference between the following:
and
I would assume that the byte code would be the same for these two, but I'm curious if anyone knows otherwise.
Thanks,
Adam Rice
Does anyone know offhand if there's any post-compilation difference between the following:
Code:
String a = "Some string.";
and
Code:
String b = new String( "Some string." );
I would assume that the byte code would be the same for these two, but I'm curious if anyone knows otherwise.
Thanks,
Adam Rice