【Java】數組不能經過toString方法轉爲字符串

  java裏,全部的類,無論是java庫裏面的類,或者是你本身建立的類,所有是從object這個類繼承的。object裏有一個方法就是toString(),那麼全部的類建立的時候,都有一個toString的方法。html

  這個方法是幹什麼的呢?java

  首先咱們得了解,java輸出用的函數print();是不接受對象直接輸出的,只接受字符串或者數字之類的輸出。那麼你想把一個建立好的對象拿來輸出怎麼辦?例如:spring

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 
 * <code>toString</code> 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.
 * <p>
 * The <code>toString</code> method for class <code>Object</code> 
 * returns a string consisting of the name of the class of which the 
 * object is an instance, the at-sign character `<code>@</code>', 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:
 * <blockquote>
 * <pre>
 * getClass().getName() + '@' + Integer.toHexString(hashCode())
 * </pre></blockquote>
 *
 * @return  a string representation of the object.
 */
public String toString() {
return getClass().getName() + "@" + Integer.toHexString(hashCode());
}

  而數組類中並無對此方法重寫(override),僅僅是重載(overload)爲類的靜態方法(參見java.util.Arrays)。因此,數組直接使用toString()的結果也是[類型@哈希值]。ide

  因此數組轉爲字符串應寫成:函數

Arrays.toString(a) 

  這種方法的toString()是帶格式的,也就是說輸出的是[a, b, c],若是僅僅想輸出abc則需用如下兩種方法:this

  方法1:直接在構造String時轉換。spa

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

  方法2:調用String類的方法轉換。.net

String.valueOf(char[] ch)

  參考資料:code

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

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

相關文章
相關標籤/搜索