Java LabelValue 元组的 contains() 方法
在 Java 中使用 LabelValue 类的 contains() 方法搜索值。如果元组中存在该值,则返回 TRUE,否则返回 FALSE 值。
我们首先看看要使用 JavaTuples 需要什么。要在 JavaTuples 中使用 LabelValue 类,您需要导入以下包−
import org.javatuples.LabelValue;
注意 − 下载 JavaTuples Jar 库来运行 JavaTuples 程序。如果您使用 Eclipse IDE,则右击 项目 -> 属性 -> Java 构建路径 -> 添加外部 JAR,并上传下载的 JavaTuples jar 文件。请参阅以下指南,了解运行 JavaTuples 的所有步骤 −
步骤 − 如何在 Eclipse 中运行 JavaTuples 程序
以下是实现 Java 中 LabelValue 类的 contains() 方法的一个示例 −
示例
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("Does the value exist = "+lv.contains(500)); } }
输出
The following is the output: LabelValue Tuple = [5, Rank] Get the key = 5 Get the value = Rank Does the value exist = false
广告