2015-04-20 15:36:01 -07:00
|
|
|
//: generics/TupleTest.java
|
|
|
|
import net.mindview.util.*;
|
|
|
|
|
|
|
|
class Amphibian {}
|
|
|
|
class Vehicle {}
|
|
|
|
|
|
|
|
public class TupleTest {
|
|
|
|
static TwoTuple<String,Integer> f() {
|
|
|
|
// Autoboxing converts the int to Integer:
|
2015-05-05 11:20:13 -07:00
|
|
|
return new TwoTuple<>("hi", 47);
|
2015-04-20 15:36:01 -07:00
|
|
|
}
|
|
|
|
static ThreeTuple<Amphibian,String,Integer> g() {
|
2015-05-05 11:20:13 -07:00
|
|
|
return new ThreeTuple<>(new Amphibian(), "hi", 47);
|
2015-04-20 15:36:01 -07:00
|
|
|
}
|
|
|
|
static
|
|
|
|
FourTuple<Vehicle,Amphibian,String,Integer> h() {
|
|
|
|
return
|
2015-05-05 11:20:13 -07:00
|
|
|
new FourTuple<>(
|
2015-04-20 15:36:01 -07:00
|
|
|
new Vehicle(), new Amphibian(), "hi", 47);
|
|
|
|
}
|
|
|
|
static
|
|
|
|
FiveTuple<Vehicle,Amphibian,String,Integer,Double> k() {
|
|
|
|
return new
|
2015-05-05 11:20:13 -07:00
|
|
|
FiveTuple<>(
|
2015-04-20 15:36:01 -07:00
|
|
|
new Vehicle(), new Amphibian(), "hi", 47, 11.1);
|
|
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
|
|
TwoTuple<String,Integer> ttsi = f();
|
|
|
|
System.out.println(ttsi);
|
|
|
|
// ttsi.first = "there"; // Compile error: final
|
|
|
|
System.out.println(g());
|
|
|
|
System.out.println(h());
|
|
|
|
System.out.println(k());
|
|
|
|
}
|
|
|
|
} /* Output: (80% match)
|
|
|
|
(hi, 47)
|
|
|
|
(Amphibian@1f6a7b9, hi, 47)
|
|
|
|
(Vehicle@35ce36, Amphibian@757aef, hi, 47)
|
|
|
|
(Vehicle@9cab16, Amphibian@1a46e30, hi, 47, 11.1)
|
|
|
|
*///:~
|