ChatGPT解决这个技术问题 Extra ChatGPT

如何从 Java 方法返回 2 个值?

我正在尝试从 Java 方法返回 2 个值,但出现这些错误。这是我的代码:

// Method code
public static int something(){
    int number1 = 1;
    int number2 = 2;

    return number1, number2;
}

// Main method code
public static void main(String[] args) {
    something();
    System.out.println(number1 + number2);
}

错误:

Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - missing return statement
    at assignment.Main.something(Main.java:86)
    at assignment.Main.main(Main.java:53)

Java 结果:1


J
Jesper

与其返回包含两个值的数组或使用通用 Pair 类,不如考虑创建一个表示您要返回的结果的类,并返回该类的实例。给班级起一个有意义的名字。这种方法相对于使用数组的好处是类型安全,它会让你的程序更容易理解。

注意:如此处其他一些答案中所提议的,通用 Pair 类也为您提供类型安全,但不传达结果代表的内容。

示例(不使用真正有意义的名称):

final class MyResult {
    private final int first;
    private final int second;

    public MyResult(int first, int second) {
        this.first = first;
        this.second = second;
    }

    public int getFirst() {
        return first;
    }

    public int getSecond() {
        return second;
    }
}

// ...

public static MyResult something() {
    int number1 = 1;
    int number2 = 2;

    return new MyResult(number1, number2);
}

public static void main(String[] args) {
    MyResult result = something();
    System.out.println(result.getFirst() + result.getSecond());
}

这将是我的首选路线 - 大概这对数字有一些意义,如果返回类型代表这一点会很好。
您可以使用 java.util.AbstractMap.SimpleEntry 中的 SimpleEntry 并将其与 getKey() 一起使用以获取对象 1,并与 getValue() 一起使用以获取对象 2
我非常强烈地认为 Java 应该允许您返回多个值。每次你想做一些不同的事情时,它会更快(创建的对象更少)并且不需要额外的类(臃肿的代码)。我没有看到任何缺点,也许有人可以启发我?
这只是针对所提问题的一种解决方法,它仍然代表“如何从方法中返回 2 个值,就像我们在 Python 中所做的那样”。
@AnumSheraz“如何......就像在Python中一样”的答案是:你没有,因为Java没有这样的语言特性......
M
Matt

Java 不支持多值返回。返回一个值数组。

// Function code
public static int[] something(){
    int number1 = 1;
    int number2 = 2;
    return new int[] {number1, number2};
}

// Main class code
public static void main(String[] args) {
  int result[] = something();
  System.out.println(result[0] + result[1]);
}

这几乎总是错误的做法,尤其是当两个结果值的类型不同时。
@BarAkiva,错误的原因是您失去了类型安全性。如果您要返回同质类型的值,那么您应该始终更喜欢 List 而不是数组。特别是,如果您正在处理泛型值,则 List 总是优先于 T[] 作为返回值,因为您始终可以在泛型类型上构造 List 而不是数组;你不能这样做:“new T[length];”此处为不同类型创建 Pair 类的方法是异构类型的更好选择。
D
Damian Krawczyk

如果您确定只需要返回两个值,则可以实现通用 Pair

public class Pair<U, V> {

 /**
     * The first element of this <code>Pair</code>
     */
    private U first;

    /**
     * The second element of this <code>Pair</code>
     */
    private V second;

    /**
     * Constructs a new <code>Pair</code> with the given values.
     * 
     * @param first  the first element
     * @param second the second element
     */
    public Pair(U first, V second) {

        this.first = first;
        this.second = second;
    }

//getter for first and second

然后让方法返回 Pair

public Pair<Object, Object> getSomePair();

这个方法的返回会是什么样子?
类似于:pair = new Pair(thing1, thing2)....return pair;
r
richj

在 Java 中你只能返回一个值,所以最简洁的方法是这样的:

return new Pair<Integer>(number1, number2);

这是您的代码的更新版本:

public class Scratch
{
    // Function code
    public static Pair<Integer> something() {
        int number1 = 1;
        int number2 = 2;
        return new Pair<Integer>(number1, number2);
    }

    // Main class code
    public static void main(String[] args) {
        Pair<Integer> pair = something();
        System.out.println(pair.first() + pair.second());
    }
}

class Pair<T> {
    private final T m_first;
    private final T m_second;

    public Pair(T first, T second) {
        m_first = first;
        m_second = second;
    }

    public T first() {
        return m_first;
    }

    public T second() {
        return m_second;
    }
}

C
Code ninetyninepointnine

这是使用 SimpleEntry 的真正简单而简短的解决方案:

AbstractMap.Entry<String, Float> myTwoCents=new AbstractMap.SimpleEntry<>("maximum possible performance reached" , 99.9f);

String question=myTwoCents.getKey();
Float answer=myTwoCents.getValue();

仅使用 Java 内置函数,它具有类型安全的好处。


U
UserF40

使用 Pair/Tuple 类型的对象,如果你依赖于 Apache commons-lang,你甚至不需要创建一个。只需使用 Pair 类。


G
GuruKulki

您必须使用集合返回多个返回值

在您的情况下,您将代码编写为

public static List something(){
        List<Integer> list = new ArrayList<Integer>();
        int number1 = 1;
        int number2 = 2;
        list.add(number1);
        list.add(number2);
        return list;
    }

    // Main class code
    public static void main(String[] args) {
      something();
      List<Integer> numList = something();
    }

s
siva
public class Mulretun
{
    public String name;;
    public String location;
    public String[] getExample()
    {
        String ar[] = new String[2];
        ar[0]="siva";
        ar[1]="dallas";
        return ar; //returning two values at once
    }
    public static void main(String[] args)
    {
        Mulretun m=new Mulretun();
        String ar[] =m.getExample();
        int i;
        for(i=0;i<ar.length;i++)
        System.out.println("return values are: " + ar[i]);      

    }
}

o/p:
return values are: siva
return values are: dallas

S
Steve O 1969

我很好奇为什么没有人想出更优雅的回调解决方案。因此,不是使用返回类型,而是使用作为参数传递给方法的处理程序。下面的例子有两种截然不同的方法。我知道这两者中哪一个对我来说更优雅。 :-)

public class DiceExample {

    public interface Pair<T1, T2> {
        T1 getLeft();

        T2 getRight();
    }

    private Pair<Integer, Integer> rollDiceWithReturnType() {

        double dice1 = (Math.random() * 6);
        double dice2 = (Math.random() * 6);

        return new Pair<Integer, Integer>() {
            @Override
            public Integer getLeft() {
                return (int) Math.ceil(dice1);
            }

            @Override
            public Integer getRight() {
                return (int) Math.ceil(dice2);
            }
        };
    }

    @FunctionalInterface
    public interface ResultHandler {
        void handleDice(int ceil, int ceil2);
    }

    private void rollDiceWithResultHandler(ResultHandler resultHandler) {
        double dice1 = (Math.random() * 6);
        double dice2 = (Math.random() * 6);

        resultHandler.handleDice((int) Math.ceil(dice1), (int) Math.ceil(dice2));
    }

    public static void main(String[] args) {

        DiceExample object = new DiceExample();


        Pair<Integer, Integer> result = object.rollDiceWithReturnType();
        System.out.println("Dice 1: " + result.getLeft());
        System.out.println("Dice 2: " + result.getRight());

        object.rollDiceWithResultHandler((dice1, dice2) -> {
            System.out.println("Dice 1: " + dice1);
            System.out.println("Dice 2: " + dice2);
        });
    }
}

C
Code ninetyninepointnine

您无需创建自己的类即可返回两个不同的值。只需使用这样的 HashMap :

private HashMap<Toy, GameLevel> getToyAndLevelOfSpatial(Spatial spatial)
{
    Toy toyWithSpatial = firstValue;
    GameLevel levelToyFound = secondValue;

    HashMap<Toy,GameLevel> hm=new HashMap<>();
    hm.put(toyWithSpatial, levelToyFound);
    return hm;
}

private void findStuff()
{
    HashMap<Toy, GameLevel> hm = getToyAndLevelOfSpatial(spatial);
    Toy firstValue = hm.keySet().iterator().next();
    GameLevel secondValue = hm.get(firstValue);
}

您甚至可以享受类型安全的好处。


您甚至不需要 HashMap,只需使用 SimpleEntry!
为什么是HashMap,请问?这似乎是一个奇怪的数据结构在这里使用。
@Neil Chowdhury 没有其他原因,因为它是一个方便的内置类,带有两个可定义的参数。正如 Xerus 所指出的,AbstractMap.SimpleEntry 是这里更轻量级的选项。请看下面的相应答案!
M
M.C.

返回一个对象数组

private static Object[] f () 
{ 
     double x =1.0;  
     int y= 2 ;
     return new Object[]{Double.valueOf(x),Integer.valueOf(y)};  
}

J
Jacob

在我看来,最好的方法是创建一个新类,其中构造函数是您需要的函数,例如:

public class pairReturn{
        //name your parameters:
        public int sth1;
        public double sth2;
        public pairReturn(int param){
            //place the code of your function, e.g.:
            sth1=param*5;
            sth2=param*10;
        }
    }

然后像使用函数一样简单地使用构造函数:

pairReturn pR = new pairReturn(15);

您可以使用 pR.sth1, pR.sth2 作为“函数的 2 个结果”


A
Andreas

您还可以将可变对象作为参数发送,如果您使用方法来修改它们,那么当您从函数返回时它们将被修改。它不适用于 Float 之类的东西,因为它是不可变的。

public class HelloWorld{

     public static void main(String []args){
        HelloWorld world = new HelloWorld();

        world.run();
     }



    private class Dog
    {
       private String name;
       public void setName(String s)
       {
           name = s;
       }
       public String getName() { return name;}
       public Dog(String name)
       {
           setName(name);
       }
    }

    public void run()
    {
       Dog newDog = new Dog("John");
       nameThatDog(newDog);
       System.out.println(newDog.getName());
     }


     public void nameThatDog(Dog dog)
     {
         dog.setName("Rutger");
     }
}

结果是:罗格


h
hyperpallium

首先,如果 Java 有用于返回多个值的元组会更好。

其次,编写最简单的 Pair 类,或使用数组。

但是,如果您确实需要返回一对,请考虑它代表什么概念(从它的字段名开始,然后是类名) - 以及它是否发挥了比您想象的更大的作用,以及它是否会帮助您的整体设计对其进行明确的抽象。也许它是一个code hint...
请注意:我并不是教条地说它有帮助,而只是看看,看看是否有帮助。 ..或者如果没有。