我有以下课程:
public class Matriz
{
...
static public void create(Matriz a, Matriz b)
{
...
a=new Matriz(someValue,anotherValue);
b=new Matriz(someValue,anotherValue);
...
}
}
在我的主要方法中:
public static void main(String[] args)
{
Matriz a=null,b=null;
Matriz.create(a,b);
//these are null
a.print();
b.print();
}
我的方法create()的重点是“返回”两个Matriz对象。我该怎么办?
最佳答案
最简单的方法是只返回一个数组:
关于java - 实例化方法中的两个对象以用作“返回值”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3839239/