作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个方法
public Response xyz ( JAXBElement<T> request ) {
......
}
两个不同的地方使用不同的 JAXBElement 调用它。一与 xyz(JAXBElement<a>)
和其他 xyz(JAXBElement<B>)
如何使我的方法摄入通用,以便它适用于这两种方法?
最佳答案
请尝试:
xyz(JAXBElement<?> myElement);
请参阅此tutorial关于泛型:
So what is the supertype of all kinds of collections? It's written
Collection<?>
(pronounced "collection of unknown"), that is, a collection whose element type matches anything. It's called a wildcard type for obvious reasons. We can write:void printCollection(Collection<?> c) {
for (Object e : c) {
System.out.println(e);
}
}and now, we can call it with any type of collection.
关于java - 如何将通用 JAXBElement 作为输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26301505/
我是一名优秀的程序员,十分优秀!