Array error Ljava.lang.string;@3e25a5
807580Jul 31 2008 — edited May 3 2010Hi,
I have the following code, but it doesn't print anything, except the error "Ljava.lang.string;@3e25a5." The code compiles without any errors.
class Array {
public static void main (String[] arg) {
String[] CharArray = {"I am stuck."};
System.out.println (CharArray);
}
}
Thanks, in advance.