如何获取 java 的泛型中的对象类型

 我来答
暮影1994
2015-09-05 · TA获得超过2338个赞
知道大有可为答主
回答量:1215
采纳率:60%
帮助的人:396万
展开全部

class Human {
public String toString() {
return "This is human";
}
}

class Man extends Human {
public String toString() {
return "This is man";
}
}

class Woman extends Human {
public String toString() {
return "This is woman";
}
}

public class GetObj {
/**
 * 获取泛型的对象类型
 * 
 * @param obj
 *            泛型对象
 */
public static <T> void showInstance(T obj) {
try {

Object tmpObj = obj.getClass().newInstance();// 实例化泛型对象

if (tmpObj instanceof Human) {// Human的对象
System.out.println(tmpObj);
} else if (tmpObj instanceof Man) {// Man的对象
System.out.println(tmpObj);
} else {// Woman的对象
System.out.println(tmpObj);
}
} catch (Exception e) {
e.printStackTrace();
}
}

public static void main(String[] args) {
Human h = new Human();
showInstance(h);

Man m = new Man();
showInstance(m);

Woman w = new Woman();
showInstance(w);
}

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式