gpt4 book ai didi

java - 从 Java 方法返回元组

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:40:18 27 4
gpt4 key购买 nike

我写了一个java类:

public class Tuple<X, Y> { 
public final X x;
public final Y y;
public Tuple(X x, Y y) {
this.x = x;
this.y = y;
}
}

但是当我创建这样的函数时:

public Tuple<boolean, String> getResult()
{
try {
if(something.equals(something2))
return new Tuple(true, null);
}
catch (Exception e){
return new Tuple(false, e.getMessage());
}

但是,我得到以下编译错误:

unexpected type
required: reference
found: boolean

我能做什么?

最佳答案

泛型不适用于原始类型。使用 Boolean而不是 boolean

public Tuple<Boolean, String> getResult() {
//your code goes here...
}

关于java - 从 Java 方法返回元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16867158/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com