作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我的泛型类型方法返回列表,如下
List<Class<Department>> departmentsByAppId = commonDao.getDaoData(new Object[]{appStateObject.getAppId()}, new String[]{"appId"}, new String[]{"eq"}, Department.class);
那么我们如何将这些数据转换为普通列表,如 List<Department>
无需迭代。
最佳答案
假设您的泛型类型方法是在泛型接口(interface)中声明的,并且该部门有一个扩展了最后一个接口(interface)的 DAO 接口(interface),您可以执行类似的操作:
YourGenericDaoInterface.java:
public interface YourGenericDaoInterface<E> {
List<E> getDaoData(Object[] objArray, String[] appId, String[] eq, Class clazz);
}
YourGenericDaoImplementation.java:
@Override
List<E> getDaoData(Object[] objArray, String[] appId, String[] eq, Class clazz) {
// do your stuff here
}
YourDepartmentDaoInterface.java:
public interface YourDepartmentDaoInterface extends YourGenericDaoInterface<Department> {
}
所以基本上它会执行以下操作:
YourDepartmentDaoInterface
继承YourGenericDaoInterface<Department>
您获取方法 getDaoData 并告知返回类型是 Department 类型,然后当您使用您的方法时,您将直接调用: List<Department> dep = commonDao.getDaoData(new Object[] appStateObject.getAppId()}, new String[]{"appId"}, new String[]{"eq"}, Department.class);
关于java - 将泛型类型类列表转换为对象列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32520363/
我是一名优秀的程序员,十分优秀!