注解和反射学习笔记-13获取泛型信息

视频链接
在这里插入图片描述

package demo;

import java.lang.reflect.*;
import java.util.List;
import java.util.Map;

//通过发射获取泛型
public class test14 {

	public static void main(String[] args) throws NoSuchMethodException, SecurityException {
		// TODO Auto-generated method stub
		Method method = test14.class.getDeclaredMethod("test01", Map.class,List.class);
		Type[] type = method.getGenericParameterTypes();
		for(Type t:type)
		{
			System.out.println("#"+t);
			if(t instanceof ParameterizedType)
			{
				Type[] a = ((ParameterizedType) t).getActualTypeArguments();
				for(Type b:a)
				{
					System.out.println(b);
				}
			}
		}
		method = test14.class.getDeclaredMethod("test02", null);
		Type type2= method.getGenericReturnType();
		if(type2 instanceof ParameterizedType)
		{
			Type[] a = ((ParameterizedType) type2).getActualTypeArguments();
			for(Type b:a)
			{
				System.out.println(b);
			}
		}
		
	}
	public  void test01(Map<String,User> map,List<User> list)
	{
		System.out.println("test01");
	}
	public  Map<String,User> test02()
	{
		System.out.println("test02");
		return null;
	}
}

运行结果:
在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值