我有以下方法:
public static void update(String name) {
CustomTextType obj = findByName(name);
...
}
我想让它成为一种通用的使用方法,这样我就不需要为每个新的自定义类型编写新代码。我可以这样做,这需要在调用 update() 之前实例化对象:
public static void update(String name, Object obj) {
obj = findByName(name);
...
}
出于好奇,我想知道是否有办法使用 Java 泛型来做到这一点:
// note: this is an example and does not work
public static void update(String name, <T> type) {
type var = findByName(name);
...
}
有没有办法在 Java 中实现这一点?