标签:temp add 维数 数组 二维 integer ++ 定义 map
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);
}
标签:temp add 维数 数组 二维 integer ++ 定义 map
原文地址:https://www.cnblogs.com/z2529827226/p/11620913.html