从 Java 中的 LabelValue Tuple 中获取值
要从 Java 中的 LabelValue 类中获取值,你需要使用 getValue() 方法。要获取键,请使用 getLabel() 方法。我们首先来看看我们如何使用 JavaTuples。要使用 JavaTuples 中的 LabelValue 类,你需要导入以下包 −
import org.javatuples.LabelValue;
注意 − 下载 JavaTuples Jar 库来运行 JavaTuples 程序。如果你正在使用 Eclipse IDE,那么右键单击 项目 -> 属性 -> Java 构建路径 -> 添加外部 Jar 并上传下载的 JavaTuples jar 文件。参考以下指南获取运行 JavaTuples 的所有步骤 −
步骤 − 如何在 Eclipse 中运行 JavaTuples 程序
以下是一个示例,用于从 LabelValue JavaTuple 中获取值 −
示例
import org.javatuples.LabelValue; public class Demo { public static void main(String[] args) { LabelValue<Integer, String> lv = new LabelValue<Integer, String>(5, "Rank"); System.out.println("LabelValue Tuple = "+lv); System.out.println("Get the key = "+lv.getLabel()); System.out.println("Get the value = "+lv.getValue()); } }
输出
LabelValue Tuple = [5, Rank] Get the key = 5 Get the value = Rank
广告