泛型使用

泛型方法


class Test
{
    // 参数添加泛型
	public <T> void getMethod(T a){}
	//返回值为泛型
	public  <T> T   getMethod(T a){}
	
}
// 参数泛型调用
Test test=new Test();
// 调用泛型方法时,在方法名前的尖括号中放入具体类型
test.<String>getMethod("");

泛型类

class ResultObj<T> 
{
	private T reqObj;
}
// 在类名后的尖括号中放入具体类型
ResultObj<String> obj=new ResultObj<String>();

你可能感兴趣的:(泛型使用)