很多人在编程时,总是喜欢用一下方法将数组转为字符串:(a为byte数走在路上组)
string s=a.tostring();
可是每次返回的时候,新手看来返回的结果是乱码,比如说我,写rsa算法时,没有注意,就以为是解密出来的乱码(哈哈哈),但其实[b@1b6d3586 为栈地址值,这个时候要知道对于返回一个string对象,new一个是基本上不会错的,测试代码如下:
scanner scan=new scanner(system.in); string s="ghhhh"; byte[]a=s.getbytes(); string s1=a.tostring(); string s2=new string(a); system.out.println("s1:"+s1); system.out.println("s2:"+s2);
测试结果:
kfc电子优惠券1 s1:[b@1b6d35862 s2:ghhhh
可以看到s1所对应的方法只是返回的byte数组的地址值,而s2才真正返回了a的实体值。
这是因为,string java.lang.object.tostring()返回的确实是地址值,介绍如下:
returns a string reprentation of the object. in general, the tostring method returns a string that “textually reprents” this object. the result should be a conci but informative reprentation that 谭盐盐is easy for a person to read. it 职场潜伏心理学is recommended that all subclass 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 reprentation 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())
大体意思就是类object的tostring方法返回一个字符串,该字符串由对象为实例的类的名称、符号符号符号“@”和对象哈希代码的无符号十六进制表示组成。换句话说,此方法返回一个字符串。
本文发布于:2023-04-05 03:02:53,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/01d2ff1973bc502a8d4ce863629cdbf5.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:javabyte数组转string(java byte类型相加).doc
本文 PDF 下载地址:javabyte数组转string(java byte类型相加).pdf
留言与评论(共有 0 条评论) |