Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
toString(int[]) メソッドを使用しようとしていますが、間違っていると思います:
int[] temp; String[] vector
やってみる:
vector =toString(temp[]);
代わりにこれを使用してください:
String[] vector= new String[temp.length]; int i = 0; while (i < temp.length) { vector[i] = String.valueOf(temp[i++]); }