您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。