我有以下代码:
protected <T> T getValueForKey(String key) {
T value = null;
// currentStats is just a Bundle
if (currentStats.containsKey(key)) {
return value;
}
return value;
}
如何设置限制?即 T 是 String 或 int 或 double 例如。这可能吗?
附言
我不想用
protected <T extends String> T getValueForKey(String key) {
}
因为我不想只有字符串..