有无方法将Vector转换为相同大小的数组,如果有,怎么办
Posted on 八月 16rd, 2007 由 admin
如题
推荐阅读
网友:cuihao
public object[] toarray()
returns an array containing all of the elements in this vector in the correct order.
网友:beyond_xiruo
vector v=new vector();
…………
object[]o=v.toarray();


讨论区