有时需要在方法末尾返回类型不同的对象,而return 语句只能返回一个或一组类型一样的对象。此时就需要用到泛型。
首先先解释个概念,
元组:它是将一组对象直接打包存储于其中的一个单一对象,这个容器对象允许读取其中元素,但不能修改。
利用泛型创建元组
1
2
3
4
5
6
7
8
9
10
11
|
public class ReturnTwo<A,B> { public final A first; public final B second; public ReturnTwo(A a,B b) { first = a; second = b; } } |
测试
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public class Test { private String a = "abc" ; private int b = 123 ; public ReturnTwo<String, Integer> get() { ReturnTwo<String, Integer> rt = new ReturnTwo<String, Integer>( this .a, this .b); return rt; } public static void main(String[] args) { Test test = new Test(); ReturnTwo<String, Integer> rt = test.get(); System.out.println(rt.first); System.out.println(rt.second); } } |
输出结果:
abc
123
以上这篇JAVA利用泛型返回类型不同的对象方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。