List<T> voList = (t1,t2,t3,t4,t5);
T[] tArr = new T[voList.size()];
voList.toArray(tArr);
syso(tArr);

结果为[t1,t2,t3,t4,t5]