Collection.toArray() java.lang.ClassCastException

前端 未结 4 841
既然无缘
既然无缘 2021-02-05 08:23
import java.util.HashMap;
import java.util.Map;


public class Main
{
    public static void main(String[] args)
    {
        Map map=new HashMap&l         


        
4条回答
  •  一生所求
    2021-02-05 08:51

    Use this code for listing out the values of map i.e. class names:

    Object[] array = map.values().toArray();
    for (Object object : array) {
        System.out.println(object.toString());
    }
    

提交回复
热议问题