return陣列的相關文章
return陣列的相關商品

how to return an array from a method (Beginning Java forum at JavaRanch)
瀏覽:1460
日期:2025-07-01
Your problem isn't with the "return", it's with the earlier declaration of variable "a" and the declaration of the method. In both cases, you declared it as "int", but it is [a reference to] an array, so should have been declared "int[]". Once your method...看更多