为了账号安全,请及时绑定邮箱和手机立即绑定

这样写错在哪里?

这样写错在哪里?

果果JAVA 2015-07-02 17:45:08
public static void main(String[] args) {int[] a = {5,2,33,31,54};Dome01 test = new Dome01();System.out.println(test.and(a));}public int[] and(int[] array){Arrays.sort(array);return array;}运行结果:[I@19e0bfd
查看完整描述

1 回答

?
晒星星

TA贡献1条经验 获得超0个赞

//遍历一下数组a输出,在输出试试

public static void main(String[] args) {

    int[] a = { 5, 2, 33, 31, 54 };

    Dome01 test = new Dome01 ();

    test.and(a);

    for (int i = 0; i < a.length; i++) {

        System.out.print(a[i] + ",");

    }

}


public int[] and(int[] array) {

    Arrays.sort(array);

    return array;

}


查看完整回答
反对 回复 2015-07-03
  • 1 回答
  • 0 关注
  • 1322 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信