JavaTuples 中的 KeyValue 类是什么?
KeyValue 类是 2 个元素的元组,即键和值。它位于 JavaTuples 库中。以下是声明 -
public final class KeyValue<P, Q> extends Tuple implements IValueKey<P>, IValueValue<Q>
首先让我们看看使用 JavaTuples 需要做什么。要在 JavaTuples 中使用 KeyValue 类,你需要导入以下包 -
import org.javatuples.KeyValue;
注意 - 下载 JavaTuples Jar 库来运行 JavaTuples 程序。如果你使用 Eclipse IDE,则右键单击项目 -> 属性 -> Java 构建路径 -> 添加外部Jar,然后上传下载的 JavaTuples jar 文件。请参阅以下指南,了解运行 JavaTuples 的所有步骤 -
步骤 - 如何在 Eclipse 中运行 JavaTuples 程序
以下是实现 Java 中 KeyValue 类的一个示例 -
示例
import org.javatuples.KeyValue; public class Demo { public static void main(String[] args) { KeyValue<Integer, String> value = new KeyValue<Integer, String>(5, "Points"); System.out.println("Elements in the KeyValue Tuple = "+value); } }
输出
The following is the output: Elements in the KeyValue Tuple = [5, Points]
广告