💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 编写泛型 泛型(Generic)一般用在集合类中
 编写泛型时,需要定义泛型类型<T> ``` public class Pair<T> { … } ``` 静态方法不能引用泛型类型<T>,必须定义其他类型<K>来实现“泛型”: ``` public static <K> Pair<K> create(K first, K last) { … } ``` 泛型可以同时定义多种类型<T, K>。