本文介绍了Java中的KeyValuePair的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找Java中的KeyValuePair类。

由于java.util大量使用接口,因此没有提供具体实现,只提供Map.Entry接口。

I'm looking for a KeyValuePair class in Java.
Since java.util heavily uses interfaces there is no concrete implementation provided, only the Map.Entry interface.

我可以导入一些规范的实现吗?
这是我讨厌实施100倍的管道工编程课程之一。

Is there some canonical implementation I can import?It is one of those "plumbers programming" classes I hate to implement 100x times.

推荐答案

文档是通用的,可以是很有用。

The documentation AbstractMap.SimpleEntry is generic and can be useful.

这篇关于Java中的KeyValuePair的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 03:22