1
0
Fork 0
SVEN/QR/src/Pair.java

16 lines
303 B
Java
Raw Normal View History

2020-07-04 10:24:16 +00:00
public class Pair {
public int x, y;
public Pair(int _x, int _y) {
x = _x;
y = _y;
}
// Kopierkonstruktor, da eine Zuweisung nicht die Werte kopiert,
// sondern beide Variablen auf den gleichen Speicher zeigen l<>sst.
public Pair(Pair copy) {
x = copy.x;
y = copy.y;
}
}