使用 Java 中的 with() 方法创建 Decade Tuple

java 8object oriented programmingprogramming

要使用 Java 创建 Decade Tuple,可以使用 with() 方法。首先让我们看看使用 JavaTuples 需要什么。要使用 JavaTuples 中的 Decade 类,您需要导入以下包。

import org.javatuples.Decade;

注意:下载 JavaTuples Jar 库以运行 JavaTuples 程序。如果您使用的是 Eclipse IDE,请右键单击项目 → 属性 → Java 构建路径 → 添加外部 Jar并上传下载的 JavaTuples jar 文件。请参阅以下指南,了解运行 JavaTuples 的所有步骤。

步骤: 如何在 Eclipse 中运行 JavaTuples 程序

以下是使用 with() 方法在 Java 中创建 Decade Tuple 的示例。

示例

import org.javatuples.Decade;
public class Demo {
   public static void main(String[] args) {
      // 包含 10 个元素的 Tuple
      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 = ");
      for (Object ele : d)
         System.out.println(ele);
   }
}

输出

Elements in the Decade Tuple =
AB
CD
EF
GH
IJ
KL
MN
OP
QR
ST

上面,我们使用了 with() 方法创建了一个包含 10 个字符串元素的元组。

Decade<String, String, String, String, String, String, String, String, String, String> d =
Decade.with("AB","CD", "EF","GH", "IJ","KL", "MN","OP", "QR", "ST");

相关文章