应该是MyVector[1]没有被初始化的原因,
MyVector[1] = new Vector();另外:
v.clone()的类型是Object,强制转换一下应该就可以了:
v1 = (Vector)v.clone();