Java: Converting a set to an array for String representation

前端 未结 6 998
遇见更好的自我
遇见更好的自我 2021-02-05 02:08

From Sun\'s Java Tutorial, I would have thought this code would convert a set into an array.

import java.util.*;

public class Blagh {
    public static void mai         


        
6条回答
  •  广开言路
    2021-02-05 02:56

    for the sake of completeness check also java.util.Arrays.toString and java.util.Arrays.deepToString.

    The latter is particularly useful when dealing with nested arrays (like Object[][]).

提交回复
热议问题