我习惯在类型集合中使用泛型,但我从未真正使用它们来开发某些东西。
我有几个这样的课程:
public class LogInfoWsClient extends GenericWsClient {
public void sendLogInfo(List<LogInfo> logInfoList) {
WebResource ws = super.getWebResource("/services/logInfo");
try {
String response = ws.accept(MediaType.TEXT_HTML).type(MediaType.APPLICATION_XML).put(String.class, new GenericEntity<List<LogInfo>>(logInfoList) {
});
}
}
在一个和另一个之间唯一变化的是服务字符串(“/ services / info”),以及列表的类型(在这种情况下是LogInfo)
我已经为GenericWsClient类重构了几个方法,但我的目标是让我可以使用这样的东西:
List<LogInfo> myList = database.getList();
SuperGenericClient<List<LogInfo>> superClient = new SuperGenericClient<List<LogInfo>>();
superClient.send(myList,"/services/logInfo");
但我无法弄清楚如何做到这一点,或者即使它有可能。会不可能?
答案 0 :(得分:1)
是的,如果你看一下java.util.collection
包,你可能会发现所有类都是参数化的。
所以你的课将是这样的
public SuperGenericClient<E> {
public E getSomething() {
return E;
}
}
然后使用它你会有
SuperGenericClient<String> myGenericClient = new SuperGenericClient<String>();
String something = myGenericClient.getSomething();
扩展您的示例本身,您的代码将如下所示:
public class SuperGenericClient<E> extends GenericWsClient {
public void send(List<E> entityList, String service) {
WebResource ws = super.getWebResource(service);
try {
String response = ws.accept(MediaType.TEXT_HTML).type(MediaType.APPLICATION_XML).put(String.class, new GenericEntity<E>(entityList) {
});
}
}
}
public class GenericEntity<E> {
public GenericEntity(List<E> list){
}
}
您必须阅读this以便更好地了解泛型。
答案 1 :(得分:1)
您可以像下面那样编写您的课程 - 您可以将相同的想法应用于GenericEntity
。
public class SuperGenericClient<T> extends GenericWsClient {
public void send(List<T> list, String service) {
WebResource ws = super.getWebResource(service);
try {
String response = ws.accept(MediaType.TEXT_HTML).type(MediaType.APPLICATION_XML).put(String.class, new GenericEntity<T>(list) {
});
}
}
}
然后您可以这样称呼它:
List<LogInfo> myList = database.getList();
SuperGenericClient<LogInfo> superClient = new SuperGenericClient<LogInfo>();
superClient.send(myList,"/services/logInfo");
答案 2 :(得分:1)
像这样声明你的课:
public class LogThing<T> {
public void sendLogInfo(List<T> list) {
// do thing!
}
}
当你使用它时,按照这样做:
List<LogInfo> myList = db.getList();
LogThing<LogInfo> superClient = new LogThing<LogInfo>();
superClient.sendLogInfo(myList);