作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
A Formatter<T>
知道如何格式化 T
字符串:
public interface Formatter<T> {
String format(final T t);
}
我想要一个 Map
格式化程序,一个用于 Integer
, 一个用于 Date
等:
Map<Class, Formatter> formatters;
预期用途是:
formatters.put(Integer.class, new Formatter<Integer>() {
public String format(Integer i) {
return i.toString;
}
});
有没有什么方法可以强制键值对 Class
达成一致?类型?如果我说 put(Integer.class, new Formatter<Integer>(){...})
它会工作但是put(Integer.class, new Formatter<Date>(){...})
不会吧?
我现在尝试的是使用 ?作为类型:
Map<Class<?>, Formatter<?>> formatters;
但是我不能在这张 map 中使用格式化程序:
Object obj = Integer.valueOf(15);
formatters.get(obj.getClass()).format(obj);
Error: The method format(capture#3-of ?) in the type Formatter<capture#3-of ?> is not applicable for the arguments (Object)
欢迎任何澄清。
我是一名优秀的程序员,十分优秀!