class ArrayTest3
{
public static void main(String[] args)
{
int[] arr ={34,12,56,90};
String str =toString(arr);
System.out.print(str);
}
/*
需求1:定义功能,将{34,12,56,90}数组中的元素转成字符串"[34,12,56,90]"
明确1:结果?字符串。
明确2:参数?数组。
*/
public static String toString(int[] arr)
{
System.out.print("[");
//1,定义字符串变量。
String temp = "";
//2,遍历数组。将每一个数组的元素和字符串相连接、
for (int x = 0;x<arr.length ;x++ )
{
if (x!= arr.length-1)
{
temp = temp + arr[x] + ",";
}
else
temp = temp+ arr[x] + "]";
//3,讲连接后的字符串返回
}
return temp;
}
}
|
|