我是Java新手,我需要在Java6中编写泛型方法。我的目的可以用以下C#代码表示。有人能告诉我如何用Java编写它吗?
class Program
{
static void Main(string[] args)
{
DataService svc = new DataService();
IList<Deposit> list = svc.GetList<Deposit, DepositParam, DepositParamList>();
}
}
class Deposit { ... }
class DepositParam { ... }
class DepositParamList { ... }
class DataService
{
public IList<T> GetList<T, K, P>()
{
// build an xml string according to the given types, methods and properties
string request = BuildRequestXml(typeof(T), typeof(K), typeof(P));
// invoke the remote service and get the xml result
string response = Invoke(request);
// deserialize the xml to the object
return Deserialize<T>(response);
}
...
}
答案 0 :(得分:3)
因为Generics是Java中仅编译时的特性,所以没有直接的等价物。 typeof(T)
根本不存在。 java端口的一个选项是使该方法看起来更像这样:
public <T, K, P> List<T> GetList(Class<T> arg1, Class<K> arg2, Class<P> arg3)
{
// build an xml string according to the given types, methods and properties
string request = BuildRequestXml(arg1, arg2, arg3);
// invoke the remote service and get the xml result
string response = Invoke(request);
// deserialize the xml to the object
return Deserialize<T>(response);
}
这样,您需要调用者以在运行时使类型可用的方式编写代码。
答案 1 :(得分:1)
几个问题 -
A.泛型在Java中比在C#中更“弱”。
没有“typeof,所以你必须传递表示typeof的类参数
B.您的签名还必须包括通用定义中的K和P.
所以代码看起来像:
public <T,K,P> IList<T> GetList(Class<T> clazzT, Class<K> claszzK,lass<P> clazzP) {
String request = buildRequestXml(clazzT, clazzK, clazzP);
String response = invoke(request);
return Deserialize(repsonse);
}