码迷,mamicode.com
首页 > 编程语言 > 详细

直接输出数组名

时间:2020-05-03 18:54:35      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:方法   audio   ble   height   static   com   img   code   pre   

public class t1 {
    public static void main (String []args){
int []a=new int []{1,2,3};
char []b=new char []{‘a‘,‘b‘};
        System.out.println(a);
        System.out.println(b);


    }
}

输出结果为:

[I@61dc03ce
ab

原因:

技术图片

输出调用的方法不一样。

直接输出数组名

标签:方法   audio   ble   height   static   com   img   code   pre   

原文地址:https://www.cnblogs.com/xsyz/p/12822727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!