您好,登錄后才能下訂單哦!
在Java中,三元組(Triple)是一種數據結構,用于存儲三個元素
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;
}
@Override
public String toString() {
return "(" + first + ", " + second + ", " + third + ")";
}
}
public class Triple<A, B, C> {
// ... (與上面相同)
}
public class Triple<A, B, C> {
// ... (與上面相同)
public static <A, B, C> Triple<A, B, C> of(A first, B second, C third) {
return new Triple<>(first, second, third);
}
}
public class Main {
public static void main(String[] args) {
Triple<String, Integer, Double> triple = Triple.of("Hello", 42, 3.14);
System.out.println(triple); // 輸出:(Hello, 42, 3.14)
}
}
equals()
和hashCode()
。通過這些實踐,您可以在Java中有效地使用三元組來存儲和操作三個相關的值。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。