package chapter15.one; public class TupleTest { static TwoTuple f(){ return new TwoTuple("TwoTuple", 2); } static ThreeTuple g(){ return new ThreeTuple('c', "ThreeTuple", 3); } public static void main(String[] args) { TwoTuple ttsi=f(); System.out.println(ttsi); System.out.println(g()); } }