Java 數組轉字符

public static String toString(int[] arr){
	String temp = "";
	for(int i = 0;i<arr.length;i++){
		temp = temp + arr[i];
		if (i != arr.length-1) {
			temp = temp +",";
		}
	}
	return temp;
}
相關文章
相關標籤/搜索