Object obj = getList();
    List<String> result = new ArrayList<>();
    if (obj instanceof ArrayList<?>) {
        for (Object o : (List<?>) obj) {
            result.add(String.class.cast(o));
        }
    }

 

posted on 2021-02-24 09:48  FuYingju  阅读(559)  评论(0编辑  收藏  举报