您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在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;
}
}
使用示例:
Triple<String, Integer, Double> triple = new Triple<>("Hello", 42, 3.14);
System.out.println(triple.first); // 输出 "Hello"
System.out.println(triple.second); // 输出 42
System.out.println(triple.third); // 输出 3.14
Apache Commons Lang库提供了一个名为Triple
的类,你可以直接使用它。首先,将以下依赖项添加到项目的pom.xml文件中:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
然后,你可以使用org.apache.commons.lang3.tuple.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);
System.out.println(triple.getLeft()); // 输出 "Hello"
System.out.println(triple.getMiddle()); // 输出 42
System.out.println(triple.getRight()); // 输出 3.14
}
}
还有一些第三方库提供了元组支持,如javatuples。要使用它,请将以下依赖项添加到项目的pom.xml文件中:
<dependency>
<groupId>org.javatuples</groupId>
<artifactId>javatuples</artifactId>
<version>1.2</version>
</dependency>
然后,你可以使用org.javatuples.Triplet
类:
import org.javatuples.Triplet;
public class Main {
public static void main(String[] args) {
Triplet<String, Integer, Double> triple = Triplet.with("Hello", 42, 3.14);
System.out.println(triple.getValue0()); // 输出 "Hello"
System.out.println(triple.getValue1()); // 输出 42
System.out.println(triple.getValue2()); // 输出 3.14
}
}
总之,根据你的需求和项目限制选择合适的方法来实现三元组。如果你需要更多功能或更好的性能,可以考虑使用第三方库。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。