Why when I run this:
System.out.println( "foo" + new String(new byte[] {((byte) 0)}) + "bar" )
I get this on console:
foo
Where is the bar part??
Why when I run this:
System.out.println( "foo" + new String(new byte[] {((byte) 0)}) + "bar" )
I get this on console:
foo
Where is the bar part??