Java的Vector的二维数组的定义及初始化
Posted z2529827226
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java的Vector的二维数组的定义及初始化相关的知识,希望对你有一定的参考价值。
map=new Vector<Vector<Integer>>(m);
for(int i=0;i<m;++i)
Vector<Integer>temp=new Vector<Integer>();
for(int j=0;j<m;++j)
temp.add(-1);
map.add(temp);
以上是关于Java的Vector的二维数组的定义及初始化的主要内容,如果未能解决你的问题,请参考以下文章