Possible Duplicate:
Does Java need tuples?
Does Java support triples or at least pairs? Does Java support tuples? I am trying to find a way to make a list so that it has a triple with initial point as first, terminal point at last, and distance in the middle. However, I can't seem to find anything about it.
I usually just create my own class for these purposes.
class Pair<A,B> {
A a;
B b;
public Pair( A a, B b ) {
this.a = a;
this.b = b;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With