获取 Java 中 LabelValue 元组的大小
要获取 Java 中 LabelValue 元组的大小,请使用 getSize() 方法。我们首先看看 JavaTuples 需要的条件。要在 JavaTuples 中处理 LabelValue 类,需要导入以下包 −
import org.javatuples.LabelValue;
注意 − 下载 JavaTuples Jar 库来运行 JavaTuples 程序。如果您使用的是 Eclipse IDE,则右键单击 Project -> Properties -> Java Build Path -> Add External Jars,并上传下载的 JavaTuples jar 文件。以下指南中介绍了运行 JavaTuples 的所有步骤 −
步骤 − 如何在 Eclipse 中运行 JavaTuples 程序
下面是一个示例,展示如何在 Java 中向 LabelValue 元组添加值 −
示例
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()); System.out.println("Get the size of the Tuple = "+lv.getSize()); } }
输出
LabelValue Tuple = [5, Rank] Get the key = 5 Get the value = Rank Get the size of the Tuple = 2
广告