java中的方法Arrays.asList(arg1,arg2,arg3...),经常用在将多个元素或数组转化为List中的元素,但是在使用的时候,应该注意: arg1决定返回list的元素类型(即第一个元素),例如: Arrays.asList(new Integer(),new Double(),new Long(),new String()) ;会报编译错误,因为第一个元素决定了返回类型为List<Integer>. Arrays.asList(new Object(),new Doub…