recherche

Maison  >  Questions et réponses  >  le corps du texte

HashMap.class 如何知道键值类型

有这样的函数 public <T> T deserialize(byte[] bytes,Class<T> clazz)
返回值我想要Hashmap<String,Object>,但clazz传HashMap.class并不匹配

代言代言2844 Il y a quelques jours954

répondre à tous(1)je répondrai

  • 大家讲道理

    大家讲道理2017-02-16 09:24:19

    参考一些框架的做法,通常是这样子

    public <T> T deserialize(byte[] bytes,TypeReference<T> type)

    HashMap<String, Person> map = deserialize(bytes,new TypeReference<HashMap<String, Person>(){});


    répondre
    0
  • Annulerrépondre