package com.bjpowernode.t02generic;
/*
* 泛型模板 */public class TestGeneric04 {public static void main(String[] args) {
//自定义类型使用泛型 MyList<Integer> ml = new MyList<>(); ml.setE(123); ml.getE(); MyList.m1("hello"); }}
本文共 267 字,大约阅读时间需要 1 分钟。
package com.bjpowernode.t02generic;
/*
* 泛型模板 */public class TestGeneric04 {public static void main(String[] args) {
//自定义类型使用泛型 MyList<Integer> ml = new MyList<>(); ml.setE(123); ml.getE(); MyList.m1("hello"); }}
转载于:https://www.cnblogs.com/Koma-vv/p/9561633.html