代码如下:import java.util.*;
class ObjectToStringTest{
public static void main(String[]args){
ArrayList al=new ArrayList();
al.add(new Test(1));
al.add(new Test(2));
al.add(new Test(3));
System.out.println(al);
}
}
class Test{
int x=5;
int y=6;
Test(int i){
}
}
在运行的时候出现下面的字符: 
[Test@7d772e, Test@11b86e7, Test@35ce36]
执行System.out.println(al)这句时,调用了al的toString方法,也就是调用它里面的元素Test(1),Test(2),Test(3)的toString方法,这些元素在toString变成了上面的字符,这些字符代表什么意思?