欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Object to genericty

程序员文章站 2022-07-11 23:47:27
...

public T getGenericity(Object o, Class<T> type){

 

   if(type.isInstance(O)){

      type.cast(o);

  }

 return null;

}

 

so we can use it like this :

 

  User s = getGenericity(userObject,User.class);