为什么我得到这个输出,但不要使用字符串

时间:2015-12-31 17:07:11

标签: java output tostring

public class Card {
    private Rank rank;
    private Suit suit;

    public Card(Rank r, Suit s) {
        this.suit = s;
        this.rank = r;

    }

    @Override
    public String toString() {
        return rank + " of " + suit;
    }

    public static void main (String[] args) {
        Card test = new Card(Rank.A, Suit.Clubs);

        System.out.println(test);
    }
}

所以在我的输出中我印了A俱乐部。但我没有使用toString()我只是从我的构造函数中定义一个新的卡。那么有人可以向我解释为什么我得到这个输出吗?

3 个答案:

答案 0 :(得分:9)

如果您查看PrintWriter.println(Object)的Javadoc和源代码,您会看到

/**
 * Prints an Object and then terminates the line.  This method calls
 * at first String.valueOf(x) to get the printed object's string value,
 * then behaves as
 * though it invokes <code>{@link #print(String)}</code> and then
 * <code>{@link #println()}</code>.
 *
 * @param x  The <code>Object</code> to be printed.
 */
public void println(Object x) {
    String s = String.valueOf(x);
    synchronized (lock) {
        print(s);
        println();
    }
}

反过来,String.valueOf(Object)执行

/**
 * Returns the string representation of the {@code Object} argument.
 *
 * @param   obj   an {@code Object}.
 * @return  if the argument is {@code null}, then a string equal to
 *          {@code "null"}; otherwise, the value of
 *          {@code obj.toString()} is returned.
 * @see     java.lang.Object#toString()
 */
public static String valueOf(Object obj) {
    return (obj == null) ? "null" : obj.toString();
}

所以你可以看到为你调用toString()

正如文档中所述,您可以假设未来或其他实现中不会发生这种变化。即代码可能会改变,但记录的功能将始终保留。

答案 1 :(得分:1)

System.out.println(test);

toString()将在test处调用以打印输出。

答案 2 :(得分:1)

当您打印出一个对象时,就像在最后一行中一样,它会用于toString()方法中的任何内容,如果有的话。