在 Java LabelValue 元组中搜索某个值
要在 Java 中搜索 LabelValue 元组中的某个值,请使用 contains() 方法。它返回一个布尔值。如果存在该值,则返回 TRUE,否则返回 FALSE。让我们先了解如何使用 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()); System.out.println("Does the value exist = "+lv.contains("Rank")); } }
输出
LabelValue Tuple = [5, Rank] Get the key = 5 Get the value = Rank Get the size of the Tuple = 2 Does the value exist = true
广告