您好,登錄后才能下訂單哦!
在 Java 中,一個三元組可以用一個包含三個元素的數組、列表或自定義類來表示。這里我將給出使用自定義類和使用 Apache Commons Lang 庫的兩種方法。
public class Triple<A, B, C> {
public final A first;
public final B second;
public final C third;
public Triple(A first, B second, C third) {
this.first = first;
this.second = second;
this.third = third;
}
// getter methods
public A getFirst() {
return first;
}
public B getSecond() {
return second;
}
public C getThird() {
return third;
}
}
使用這個類,你可以創建一個三元組實例:
Triple<String, Integer, Double> triple = new Triple<>("Hello", 42, 3.14);
首先,將 Apache Commons Lang 庫添加到項目的依賴中。如果你使用 Maven,可以在 pom.xml
文件中添加以下依賴:
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
然后,你可以使用 Triple
類創建一個三元組實例:
import org.apache.commons.lang3.tuple.Triple;
import org.apache.commons.lang3.tuple.ImmutableTriple;
public class Main {
public static void main(String[] args) {
Triple<String, Integer, Double> triple = ImmutableTriple.of("Hello", 42, 3.14);
}
}
這兩種方法都可以高效地表示三元組。使用自定義類的方法更簡潔,而使用 Apache Commons Lang 庫的方法更靈活。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。