博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
3. Java面向对象之泛型-指定多个泛型
阅读量:4980 次
发布时间:2019-06-12

本文共 595 字,大约阅读时间需要 1 分钟。

3. Java面向对象之泛型-指定多个泛型

package generic;

class MutiGeneric<K, T> {
private K key;
private T take;
public K getKey() {
return key;
}
public void setKey(K key) {
this.key = key;
}
public T getTake() {
return take;
}
public void setTake(T take) {
this.take = take;
}
}
public class genricDemo02 {
public static void main(String[] args) {
MutiGeneric<Integer, String> g = new MutiGeneric<Integer, String>();
g.setKey(10);
g.setTake("多個泛型的使用");
System.out.println(g.getKey() + g.getTake());
}
}

版权声明:本文为小平果原创文章,转载请注明:http://blog.csdn.net/i10630226

转载于:https://www.cnblogs.com/dingxiaoyue/p/4948264.html

你可能感兴趣的文章