使用with()方法在Java中创建Septet元组

with()方法用于在Java中创建Septet元组。

首先让我们看看使用JavaTuples所需的工具。要在JavaTuples中使用Septet类,您需要导入以下包-

import org.javatuples.Septet;

-下载和运行JavaTuples程序的步骤如果您正在使用Eclipse IDE在JavaTuples中运行Septet类,则右键单击Project→Properties→Java Build Path→Add External Jars并上传下载的JavaTuples jar文件。

以下是一个例子-

示例

import org.javatuples.Septet;
public class Demo {
   public static void main(String[] args) {
      Septet < String, String, String, String, String, String, String > s =
         Septet.with("One", "Two", "Three", "Four", "Five", "Six", "Seven");
      System.out.println(s);
   }
}

输出结果

[One, Two, Three, Four, Five, Six, Seven]