如何存储二维数组的返回?例如
public Class A{
public String something(){
String []some_array=new String[2];
//stuff in here...sets elements of our array to something
//unsure of the next line
return some_array[];
}
public static void main(String[] args) {
String []some_other_array=new String[2];
A myA=new A();
//unsure of the next line
some_other_array[]=myA.something();
我如何着手将要返回的数组的第一个第二个元素返回为我存储它的数组的第一个第二个元素?
任何人都可以澄清在我的方法 something() 中使用参数变量而不首先使其等于另一个变量是否合法?我一直认为您要么必须在方法中声明另一个变量并使其等于参数并使用您创建的新变量。