MyEclipse下debug除錯

luxika發表於2011-12-12
首先以debug模式啟動tomcat,並檔案中設斷點(雙擊視窗的左邊框可以加斷點),然後執行,當程式走到斷點處就會轉到debug檢視下
Java程式碼
[1]快捷鍵(F8)將程式碼執行到下一個斷點,如果沒有斷點,則將程式碼執行到程式的結束。
[2]快捷鍵(F5)單步執行程式,遇到方法時進入。
[3]快捷鍵(F6)單步執行程式,遇到方法時跳過。
[4]快捷鍵(F7)單步執行程式,從當前方法跳出。

1.Step Into (also F5) 跳入
2.Step Over (also F6) 跳過
3.Step Return (also F7) 執行完當前method,然後return跳出此method
4.step Filter 逐步過濾 一直執行直到遇到未經過濾的位置或斷點(設定Filter:window-preferences-java-Debug-step Filtering)
5.resume 重新開始執行debug,一直執行直到遇到breakpoint
6.hit count 設定執行次數 適合程式中的for迴圈(設定 breakpoint view-右鍵hit count)
7.inspect 檢查 運算。執行一個表示式顯示執行值
8.watch 實時地監視變數的變化(可以選中之後右鍵點選watch,就能在右上角的那個地方看到目前的值,可省很多System.out.print())
9.我們常說的斷點(breakpoints)是指line breakpoints,除了line breakpoints,還有其他的斷點型別:field(watchpoint)breakpoint,method breakpoint,exception breakpoint.
10.field breakpoint 也叫watchpoint(監視點) 當成員變數被讀取或修改時暫掛
11.新增method breakpoint 進入/離開此方法時暫掛(Run-method breakpoint)
12.新增Exception breakpoint 捕抓到Execption時暫掛
斷點屬性:
1.hit count 執行多少次數後暫掛 用於迴圈
2.enable condition 遇到符合你輸入條件(為ture\改變時)就暫掛
3.suspend thread 多執行緒時暫掛此執行緒
4.suspend VM 暫掛虛擬機器
13.variables 檢視裡的變數可以改變變數值,在variables 檢視選擇變數點選右鍵--change value.一次來進行快速除錯。
14.debug 過程中修改了某些code後--〉save&build-->resume-->重新暫掛於斷點
===========================
例如你有如下程式:
Java程式碼
public static void main(String args[]) {
MyDate aa = new MyDate();
aa.addDays(day); (1)
System.out.println("eeeeeeeeeeeeeee"); (2)
}
public String addDays(int more_days) {
System.out.println("1"); (3)
String result = ""; (4)
System.out.println("2"); (5)
return result;
}
你在(1)處加斷點,執行到此處時如果Step Into (also F5)為跳入,則接著執行到(3)。再執行Step Over (also F6)執行本行,則執行到(4)。最後執行Step Return (also F7),則跳出addDays方法,跳到(2)
轉載:http://mxdxm.iteye.com/blog/681597

相關文章