Explore Connect Documentation
Snippets
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
class Point<T> {
  private T x;
  private T y;
  public Point(final T x, final T y) {
    this.x = x;
    this.y = y;
  }
  public String toString() {
    return "(" + this.x + ", " + this.y + ")";
  }
}
public class GenericsExample {
  public static void main(final String[] args) {
    Point<Double> p = new Point<>(3.0, 1.0);
    System.out.println(p);
    System.out.println(new Point<>(4, 2));
    System.out.println(new Point<>(1.3, 4.2));
    System.out.println(new Point<>("x", "y"));
  }
}
Press desired key combination and then press ENTER.