如何將兩個int數組傳遞給方法並返回一個int數組?將2個int數組傳遞給方法並返回1個int數組--java
我寫的是這樣的:
public class Temp {
public static void main(String[] args) {
//some code
int[] a = new int[10];
int[] b = new int[10];
//some code
int[] c = rk (a , b);
}
public static int[] rk (int[] d , int[] e){
//some code
int [] c = new int[10];
//some code
return c;
}
}
,但它沒有工作
如果你不發表您的完整的代碼,我們怎麼能調查爲什麼它不工作? – pleft
你是否錯過了一些右括號,或者你忘了將它們複製到問題中? – Eran
「它沒有用」並沒有告訴我們任何有關您預期會發生什麼或實際發生的事情。請發佈[mcve]。 –