//demo01 類
public class demo01
/*修飾符 返回值型別 方法名(...)
public void hello()
public int max(int a,int b )
//陣列下標越界:arrayindexoutofbounds
public void readfile(string file) throws ioexception
}
方法的呼叫:遞迴
public class demo02
// static和類一起載入的
public static void a()
//類例項化之後才存在
//非靜態方法
public void b()
}
//學生類
public class student
}
public class demo03
public static int add(int a,int b)
}
//值傳遞
public class demo04
//返回值為空
public static void change(int a)
}
//之前引數傳入的是乙個int屬性,然而這是傳的是person的類。改變類的屬性的值當然可以接收得到
//引用傳遞:物件,本質還是值傳遞
//理解 物件,記憶體!
public class demo05
public static void change(person person)
}//定義了乙個person類,有乙個屬性:name
class person
回顧方法及加深
方法的定義 方法的呼叫 方法的定義 demo01 類 public class demo01 修飾符 返回值型別 方法名 return 結束方法,返回乙個結果 public string sayhello 沒有返回值 public void hello public intmax int a,int...
回顧測試和測試方法
軟體生命週期 測試過程 記住開發模型 測試模型 v w h模型總結 v模型適用於中小企業。w模型適用於中大型企業,因為對於專案組成員要求高。h模型對專案組成員要求非常高,很少有公司採用。測試分類 按照手工 自動化來分 按照測試物件來分 單元測試 被測程式的最小單元,函式或者類 整合測試 有若干單元組...
init 方法呼叫及擴充套件
我們在開發的過程中避免不了和系統的一些函式 方法 打交道 但是我們應該考慮乙個問題 這些方法是什麼時候呼叫的 呼叫順序是什麼 我們不能僅僅的限於使用這些方法 應該深入地了解這些方法的原理是什麼 舉個簡單的例子 instancetype init return self instancetype in...