您只需從其他方法中調用方法即可。
private void example(){
System.out.println("facto - " + facto(1));
System.out.println("power - " + power(1,1));
}
該示例將簡單地輸出返回值。如果您想將返回值設置爲變量,請執行此操作。
private void example(){
double ex1 = facto(1);
double ex2 = power(1,1);
//Now ex1 holds the return value of facto(), and ex2 holds the return value of power().
}
另外,你應該在facto()方法中實例化結果int,否則它將不起作用。如果你在其他地方實例化,這將是一個與變量範圍有關的問題。我不確定你對此有多熟悉,所以作爲一個附註:當你第一次調用該方法時,由於本地作用域,結果變量將始終爲0。
private double facto(int n) {
int result = 0;
for (int i = 1; i <= n; i++) {
result = result * i;
}
return result;
}
來源
2016-03-02 22:24:16
Son
呼叫的方法和分配返回值給一個變量,並使用它。在幾乎任何有關Java方法的介紹性章節中,您都會了解這一切。 –