JavaTuples 中 LabelValue 类是什么?
LabelValue 类是元组,包括 2 个元素,其中第一个位置为“标签”,第二个位置为“值”。它位于 JavaTuples 库中。LabelValue 元组类是类型安全、不可变、可迭代、可序列化等。
以下是 LabelValue 类的声明;
public final class LabelValue<P, Q> extends Tuple implements IValueLabel<P>, IValueValue<Q>
让我们先看看需要如何使用 JavaTuples。要在 JavaTuples 中使用 LabelValue 类,需要导入以下包
import org.javatuples.LabelValue;
注意:下载 JavaTuples Jar 库以运行 JavaTuples 程序。如果您使用的是 Eclipse IDE,则右键点击 项目 -> 属性 -> Java 构建路径 -> 添加外部 JAR,并上传下载的 JavaTuples JAR 文件。参考以下指南了解运行 JavaTuples 的所有步骤
步骤: 如何在 Eclipse 中运行 JavaTuples 程序
以下是一个实现 LabelValue JavaTuples 类的示例
示例
import org.javatuples.LabelValue; public class Demo { public static void main(String[] args) { LabelValue<String, String> lbValue = LabelValue.with("Jacob", "Tom"); System.out.println("Elements in the LabelValue Tuple = "+lbValue); } }
输出
Elements in the LabelValue Tuple = [Jacob, Tom]
广告