JAVA自學之旅(六)

2021-09-12 21:44:33 字數 532 閱讀 9672

1.方法遞迴呼叫

遞迴:方法自身呼叫自身(能不用盡量不用)

遞迴必須要設定結束條件,不然絕對會有棧記憶體錯誤。

即使設定了結束條件,也可能會有錯誤。

2.計算1到n加法的兩種方式

public class test1

public static int sum(int n)

else

}}

計算1到n所有數的和,實際上,當n=1的時候,加法才開始正式進行數的計算。

n+(n-1)+(n-2)…從最右邊開始

public class test1

public static int sum(int n)

}

從1開始加,一直加到n結束,兩種不同的思路。並且第一種使用了遞迴,第二種沒有。

遞迴流程

HTML自學之旅(六) 塊

html body h4 塊元素block level element h4 p 大多數 html 元素被定義為塊級元素或內聯元素。br 塊級元素在瀏覽器顯示時,通常會以新行來開始 和結束 例子 h1,p,ul,table p h4 內聯元素inline element h4 p 內聯元素在顯示時通...

java自學之旅(1)字串常用方法

package test.string 字串常用方法 1.str.legth 獲取字串長度 2.str.indexof string s 用於返回字串s在指定字串中首次出現的索引位置 3.str.lastindexof string str 用於返回字串s在指定字串中最後一次出現的索引位置 4.st...

python之旅 六 自省

先看 class myclass defhello 1 self return hello 1 def hello 2 self return hello 2 defmain index hello getattr myclass hello s index,myclass hello 1 rest...