简单给出一段代码说明问题:
public class Main {
public static void main(String[] args) {
double a[]={1,4,3,2};
System.out.println(a);
System.out.print(Arrays.toString(a));
}
}
输出结果将是这样的:
[[email protected]
[1.0, 2.0, 3.0, 4.0]
造成第一种的输出情况应该是直接将数组名(引用)作为输出对象造成的。
原文地址:https://www.cnblogs.com/hwtblog/p/8278488.html
时间: 2024-11-05 15:12:56