用 Java 迭代 Decade 元组
要迭代 Decade 元组,请像 Java 中的任何其他集合对其进行处理,即使用 for 循环,迭代并显示元素。首先让我们了解在 JavaTuples 中工作的需要。要在 JavaTuples 中处理 Decade 类,您需要导入以下包
import org.javatuples.Decade;
注意:下载 JavaTuples Jar 库来运行 JavaTuples 程序。如果您使用的是 Eclipse IDE,请右键单击项目 -> 属性 -> Java 构建路径 -> 添加外部 Jar 并上传下载的 JavaTuples jar 文件。参考以下指南以了解在 JavaTuples 上运行的所有步骤
步骤: 如何在 Eclipse 中运行 JavaTuples 程序
以下是用 Java 迭代 Decade 元组的示例
示例
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("Iterating the elements in the Decade Tuple = "); for (Object ele : d) System.out.println(ele); boolean res = d.contains("MN"); System.out.println("Does the value exist in the Decade Tuple? = "+res); } }
输出
Iterating the elements in the Decade Tuple = AB CD EF GH IJ KL MN OP QR ST Does the value exist in the Decade Tuple? = true
广告