博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Java】数组不能通过toString方法转为字符串
阅读量:5878 次
发布时间:2019-06-19

本文共 1894 字,大约阅读时间需要 6 分钟。

  java里,所有的类,不管是java库里面的类,或者是你自己创建的类,全部是从object这个类继承的。object里有一个方法就是toString(),那么所有的类创建的时候,都有一个toString的方法。

  这个方法是干什么的呢?

  首先我们得了解,java输出用的函数print();是不接受对象直接输出的,只接受字符串或者数字之类的输出。那么你想把一个创建好的对象拿来输出怎么办?例如:

package com.spring.h3;public class Test2 {    public static void main(String[] args) {        System.out.println("new Test2()==="+new Test2());        //输出结果为:new Test2()===com.spring.h3.Test2@18a992f    }}

  按照print接受的类型来说,s1是不能直接输出的,那么是否代表这个是不能编译运行的呢?当然不是。因为当print检测到输出的是一个对象而不是字符或者数字时,那么它会去调用这个对象类里面的toString 方法,输出结果为[类型@哈希值]。Object类中的toString()方法的源代码如下:

/** * Returns a string representation of the object. In general, the  * toString method returns a string that  * "textually represents" this object. The result should  * be a concise but informative representation that is easy for a  * person to read. * It is recommended that all subclasses override this method. * 

* The toString method for class Object * returns a string consisting of the name of the class of which the * object is an instance, the at-sign character `@', and * the unsigned hexadecimal representation of the hash code of the * object. In other words, this method returns a string equal to the * value of: *

*
 * getClass().getName() + '@' + Integer.toHexString(hashCode()) * 
* * @return a string representation of the object. */public String toString() {return getClass().getName() + "@" + Integer.toHexString(hashCode());}

  而数组类中并没有对此方法重写(override),仅仅是重载(overload)为类的静态方法(参见java.util.Arrays)。所以,数组直接使用toString()的结果也是[类型@哈希值]。

  所以数组转为字符串应写成:

Arrays.toString(a) 

  这种方法的toString()是带格式的,也就是说输出的是[a, b, c],如果仅仅想输出abc则需用以下两种方法:

  方法1:直接在构造String时转换。

char[] data = {'a', 'b', 'c'};String str = new String(data);

  方法2:调用String类的方法转换。

String.valueOf(char[] ch)

  参考资料:

  [1] http://www.hqhome.net/java/303.html

  [2] http://blog.163.com/lixueyu1004@126/blog/static/50282494201111597090/

转载地址:http://jfdix.baihongyu.com/

你可能感兴趣的文章
优秀的相关站点留存-不定时更新
查看>>
.net中webconfig自定义配置
查看>>
【数据结构和算法16】堆排序
查看>>
PHP实现连接设备、通讯和发送命令的方法
查看>>
【HDOJ 5379】 Mahjong tree
查看>>
iOS UITableView表视图滚动隐藏UINavigationController导航栏
查看>>
SDL如何嵌入到QT中?!
查看>>
$(document).ready()
查看>>
RunLoop总结:RunLoop的应用场景(四)
查看>>
8个很实用的在线工具来提高你的Web设计和开发能力
查看>>
P1026 统计单词个数
查看>>
AndroidStudio EventBus报错解决方法its super classes have no public methods with the @Subscribe...
查看>>
MySQL主从同步那点事儿
查看>>
Python RGB 和HSV颜色相互转换
查看>>
mybatis分页练手
查看>>
.net数据库连接字符串加密
查看>>
[js高手之路] html5 canvas系列教程 - 状态详解(save与restore)
查看>>
文件监控
查看>>
poi excel 常用api
查看>>
AD提高动态的方法(附SNR计算)
查看>>