A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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;
        }
}

1 个回复

倒序浏览
这就是最基本的数组转字符串
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马