cedar!###@###.###
Apparently the clone() method isn't good for copying an array , at least not at
the moment.
Code frag:
class Clone {
> public static void main(String argv[]) {
> String s[] = new String[10];
> String t[] = (String[]) s.clone();
> t[0] = "hello";
> }
> }
crashes the interpreter
Apparently the clone() method isn't good for copying an array , at least not at
the moment.
Code frag:
class Clone {
> public static void main(String argv[]) {
> String s[] = new String[10];
> String t[] = (String[]) s.clone();
> t[0] = "hello";
> }
> }
crashes the interpreter