Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Objectがとして自身を表す方法を変更する方法はありますStringか?
Object
String
たとえば、System.out.println(new JLabel());outputがありますEmpty JLabel。
System.out.println(new JLabel());
Empty JLabel
toString() メソッドをオーバーライドする必要があります。
@Override public String toString() { return "Empty JLabel"; }
はい。そのクラスの toString() メソッドをオーバーライドする