1 2 3 4 5 6 7 8 9 10
import java.util.*; public class TestA_class { public static void main(String []argv) { TestA_generictype<Float> sc = new TestA_generictype<Float>(); List<Integer> li = new ArrayList<Integer>(); List<Float> lf = new ArrayList<Float>(); sc.m(li,lf,li); } }