在 Java Decade Tuple 中搜索值
要在 Java Decade Tuple 中搜索值,请使用 contains() 方法。该方法返回布尔值,即如果存在元素,则为 TRUE,否则,则为 FALSE。
让我们先看看使用 JavaTuples 需要什么。要在 JavaTuples 中使用 Decade 类,你需要导入以下包
import org.javatuples.Decade;
注意 下载 JavaTuples Jar 库以运行 JavaTuples 程序。如果使用 Eclipse IDE,则右键单击项目 -> 属性 -> Java 构建路径 -> 添加外部 Jar,并上传下载的 JavaTuples jar 文件。参考以下指南了解运行 JavaTuples 的所有步骤
步骤:如何在 Eclipse 中运行 JavaTuples 程序
以下是在 Java Decade Tuple 中搜索值的示例
示例
import org.javatuples.Decade; public class Demo { public static void main(String[] args) { // Tuple with 10 elements Decade<String, String, String, String, String, String, String, String, String, String> d = Decade.with("AB","CD", "EF","GH", "IJ","KL", "MN","OP", "QR", "ST"); System.out.println("Elements in the Decade Tuple = "+d); boolean res = d.contains("MN"); System.out.println("Does the value exist in the Decade Tuple? = "+res); } }
输出
Elements in the Decade Tuple = [AB, CD, EF, GH, IJ, KL, MN, OP, QR, ST] Does the value exist in the Decade Tuple? = true
广告