Java: Converting a set to an array for String representation

前端 未结 6 986
遇见更好的自我
遇见更好的自我 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:51

    You have the correct result. Unfortunately the toString()-method on the array is still the original Object.toString() so the output is somewhat unusable per default but that goes for all arrays.

提交回复
热议问题