0
我有一個String
,我可以將它轉換爲Vector<Integer>
。將整數向量轉換爲二維數組
public class VectorConverter {
public static Vector <Integer> v (String s) {
Vector<Integer> myVec = new Vector();
//Convert the string to a char array and then just add each char to the vector
char[] sChars = s.toCharArray();
int[] sInt= new int [sChars.length];;
for(int i = 0; i < s.length(); ++i) {
sInt[i]= Character.getNumericValue(sChars[i]);
myVec.add(sInt[i]);
}
return myVec;
}}
現在我想將其轉換成2D int
陣列(int[][]
)。例如,如果我有[0,1,0,0]
它將成爲一個列向量,像這樣
0
1
0
0
任何想法?
什麼尺寸佔地我能看到的第一個問題。作爲我給出的例子,您想要更改多少個元素行 –
,我想要一個大小爲(4,1)的數組, – nami