假設您的泛型類型的方法是在一個通用的接口中聲明和部門得到了延伸的DAO接口這最後一個,你可以做這樣的事情:
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並告訴他t爲返回類型爲類型系那麼當你用你的方法,你會直接調用:
List<Department> dep = commonDao.getDaoData(new Object[] appStateObject.getAppId()}, new String[]{"appId"}, new String[]{"eq"}, Department.class);
來源
2015-09-11 10:40:03
Deh
是什麼返回類型commonDao.getDaoData方法。 –
Hi @ChamlyIdunil Iduni感謝您的回覆,並且該方法的返回類型爲列表 getDaoData( - )。 –
圓括號裏有什麼'--'?這很重要。 – dasblinkenlight