集册 Java实例教程 通过对每个成员调用toString,将集合转换为字符串数组。

通过对每个成员调用toString,将集合转换为字符串数组。

欢马劈雪     最近更新时间:2020-01-02 10:19:05

459
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
通过对每个成员调用toString,将集合转换为字符串数组。
/** N o w J a v a . c o m - 时  代  Java 提供 **/

//package com.nowjava;


import java.util.Collection;


public class Main {

    public static void main(String[] argv) {

        Collection collection = java.util.Arrays.asList("asdf",

                "nowjava.com");

        System.out.println(java.util.Arrays

                .toString(toStringArray(collection)));

    }

    /**
     from
    * 时 代 J a v a 公 众 号 
    **/

    /**

     * Converts collection to a string array by calling toString on each member.

     *

     * @param collection collection to convert

     * @return string array

     */

    public static String[] toStringArray(Collection collection) {

        String[] stringArray = new String[collection.size()];


        
展开阅读全文