java接受傳入陣列 double calculateAllPrices(Land… Lands) { //or Land[ ] Lands double total = 0; // 加總變數 for(Land l : Lands) { // 一一取出各個物件 total += calculatePrice(l); // 個別計算並累加 } return total; } // ================================================ 分享此文:分享到 Twitter(在新視窗中開啟)按一下以分享至 Facebook(在新視窗中開啟) 相關