[[I@2b193f2d]
实际上,我们想要转成的List应该是有三个对象而现在只有一个
asList源码
public static List asList(T... a) { return new ArrayList<>(a);}