Java元组中的Septet类是什么?

Septet类是七个元素的元组。它是JavaTuples库的一部分。

以下是声明-

public final class Septet<A, B, C, D, E, F, G>
extends Tuple
implements IValue1<A>, IValue2<B>, IValue3<C>, IValue4<D>, IValue5<E>, IValue6<D>, IValue7<E>

首先让我们看看使用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("Mobile", "Tablet", "TV", "Laptop", "Desktop", "Tablet", "Smart TV");
      System.out.println(s);
   }
}

输出结果

[Mobile, Tablet, TV, Laptop, Desktop, Tablet, Smart TV]