结论:不是内存地址,而是一个随机数的十六进制格式。
public static void main(String[] args) {
A3 a3 = new A3();
System.out.println(a3);
}
//打印结果
a3 = com.zjj.learn.mls.day03.A3@682a0b20
Process finished with exit code 0
查看 System.out.println 的源码,可以看出调用的是 String 类的 valueOf 静态方法。
public static String valueOf(Object obj) {
return (obj == null) ? "null" : obj.toString();
}
可以看出,当对象为 null 时,就直接打印一个 null 字符串,否则就调用这个 对象的 toString 方法。
查看 Object 类的 toString 方法,结果就是类名 + @ + 十六进制的 hashCode 值。
public String toString() {
return getClass().getName() + "@" + Integer.toHexString(hashCode());
}
那个这个 hashCode 是什么,是内存地址吗?
通过查看源码可以知道,hashCode 是一个 native 方法,表示调用的是本地的 C 或者 C++ 语言方法。
在底层的 C 源码中,hashCode() 方法提供了六中方式生成 hashCode ,JDK 使用的是基于一种随机算法的方式生成一个随机数,不是 此时对象的内存地址。
不过,在 C 代码提供的方式中,有使用当前对象的内存地址的方式,不过 JDK 没有使用这一种方式。