คลาส Triplet คือทูเพิลที่มีองค์ประกอบสามอย่าง เป็นส่วนหนึ่งของไลบรารี JavaTuples
ในการทำงานกับคลาส Triplet ใน JavaTuples คุณต้องนำเข้าแพ็คเกจต่อไปนี้ -
import org.javatuples.Triplet;
ตัวอย่าง
มาดูตัวอย่างการใช้งาน Triplet class -
import org.javatuples.Triplet; public class Demo { public static void main(String[] args) { Triplet < String, String, String > t = new Triplet < String, String, String > ("One", "Two", "Three","Four", "Five"); System.out.println(t); } }
ผลลัพธ์
[One, Two, Three, Four, Five]
ตัวอย่าง
ให้เราดูตัวอย่างอื่นเพื่อรับค่าจากคลาส Triplet -
import org.javatuples.Triplet; public class Demo { public static void main(String[] args) { Triplet < String, String, String > t = new Triplet < String, String, String > ("One", "Two", "Three","Four", "Five"); System.out.println(t); System.out.println("Get Value: " + t.getValue0()); } }
ผลลัพธ์
[One, Two, Three, Four, Five] Get Value: One
ตัวอย่าง
ให้เราดูตัวอย่างอื่นเพื่อตั้งค่า Triplet ใน JavaTuples และคัดลอกด้วยค่าใหม่ที่ดัชนีที่ 1 -
import org.javatuples.Triplet; public class Demo { public static void main(String[] args) { Triplet < String, String, String > t1 = Triplet.with("Movies", "Web Series", "TV Shows"); System.out.println(t1); Triplet < String, String, String > t2 = t1.setAt1("Songs"); System.out.println(t2); } }
ผลลัพธ์
[Movies, Web Series, TV Shows] [Movies, Songs, TV Shows]