JavaTuples - Twórz krotki

Krotkę przy użyciu klas JavaTuple można utworzyć przy użyciu wielu opcji. Oto przykłady -

Korzystanie z metod with ()

Każda klasa krotki ma metodę with () z odpowiednimi parametrami. Na przykład -

Pair<String, Integer> pair = Pair.with("Test", Integer.valueOf(5));
Triplet<String, Integer, Double> triplet = Triplet.with("Test", Integer.valueOf(5), 
   Double.valueOf(32.1));

Korzystanie z Constructor

Każda klasa krotki ma konstruktora z odpowiednimi parametrami. Na przykład -

Pair<String, Integer> pair = new Pair("Test", Integer.valueOf(5));
Triplet<String, Integer, Double> triplet = new Triplet("Test", Integer.valueOf(5), 
   Double.valueOf(32.1));

Korzystanie z kolekcji

Każda klasa krotki ma metodę fromCollection () z odpowiednimi parametrami. Na przykład -

Pair<String, Integer> pair = Pair.fromCollection(listOfTwoElements);

Używanie Iterable

Każda klasa krotki ma metodę fromIterable (), która pobiera elementy w sposób ogólny. Na przykład -

// Retrieve three values from an iterable starting at index 5
Triplet<Integer,Integer,Integer> triplet = Triplet.fromIterable(listOfInts, 5);

Przykład

Zobaczmy, jak działa JavaTuples. Tutaj zobaczymy, jak tworzyć krotki na różne sposoby.

Utwórz plik klasy java o nazwie TupleTester w programie C:\>JavaTuples.

Plik: TupleTester.java

package com.tutorialspoint;
import java.util.ArrayList;
import java.util.List;
import org.javatuples.Pair;

public class TupleTester {
   public static void main(String args[]){
      //Create using with() method
      Pair<String, Integer> pair = Pair.with("Test", Integer.valueOf(5));   
      //Create using constructor()
      Pair<String, Integer> pair1 = new Pair("Test", Integer.valueOf(5)); 
      List<Integer> listOfInts = new ArrayList<Integer>();
      listOfInts.add(1);
      listOfInts.add(2);
      //Create using fromCollection() method
      Pair<Integer, Integer> pair2 = Pair.fromCollection(listOfInts);	  
      listOfInts.add(3);
      listOfInts.add(4);
      listOfInts.add(5);
      listOfInts.add(6);
      listOfInts.add(8);
      listOfInts.add(9);
      listOfInts.add(10);
      listOfInts.add(11);
      //Create using fromIterable() method
      // Retrieve three values from an iterable starting at index 5
      Pair<Integer,Integer> pair3 = Pair.fromIterable(listOfInts, 5);
      //print all tuples
      System.out.println(pair);
      System.out.println(pair1);
      System.out.println(pair2);
      System.out.println(pair3);
   }
}

Verify the result

Skompiluj klasy przy użyciu javac kompilator w następujący sposób -

C:\JavaTuples>javac -cp javatuples-1.2.jar ./com/tutorialspoint/TupleTester.java

Teraz uruchom TupleTester, aby zobaczyć wynik -

C:\JavaTuples>java  -cp .;javatuples-1.2.jar com.tutorialspoint.TupleTester

Wynik

Sprawdź dane wyjściowe

[Test, 5]
[Test, 5]
[1, 2]
[6, 8]