blob: f348e0dcbe9fa136c0d90b9be1e3358f2d4de520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import java.util.Arrays;
public class ToStringExample {
private static final int STATIC_VAR = 10;
private String name;
private Shape shape = new Square(5, 10);
private String[] tags;
private int id;
public static class Square extends Shape {
private final int width, height;
public Square(int width, int height) {
this.width = width;
this.height = height;
}
@Override public String toString() {
return "Square(super=" + super.toString() + ", width=" + width + ", height=" + height + ")";
}
}
@Override public String toString() {
return "ToStringExample(" + name + ", " + shape + ", " + Arrays.deepToString(tags) + ")";
}
}
|