How to have Java method return generic list of any type?

后端 未结 8 1990
逝去的感伤
逝去的感伤 2020-11-28 07:13

I would like to write a method that would return a java.util.List of any type without the need to typecast anything:

List

        
8条回答
  •  自闭症患者
    2020-11-28 07:22

    Something like this

    publiс  List magicalListGetter(Class clazz) {
        List list = doMagicalVooDooHere();
        return list;
    }
    

提交回复
热议问题