怎樣在Eclipse中使用debug調試程序?
最基本的操作是
首先在一個java文件中設斷點然後debug as-->open debug Dialog然後在對話框中選類後--> Run
當程序走到斷點處就會轉到debug視圖下
F鍵與F鍵均為單步調試F是step into也就是進入本行代碼中執行F是step over
也就是執行本行代碼跳到下一行
F是跳出函數
F是執行到最後
Step Into (also F) 跳入
Step Over (also F) 跳過
Step Return (also F) 執行完當前method然後return跳出此method
step Filter 逐步過濾 一直執行直到遇到未經過濾的位置或斷點(設置Filter:windowpreferencesjavaDebugstep Filtering)
resume 重新開始執行debug一直運行直到遇到breakpoint
hit count 設置執行次數 適合程序中的for循環(設置 breakpoint view右鍵hit count)
inspect 檢查 運算執行一個表達式顯示執行值
watch 實時地監視變量的變化
我們常說的斷點(breakpoints)是指line breakpoints除了line breakpoints還有其他的斷點類型field(watchpoint)breakpointmethod breakpointexception breakpoint
field breakpoint 也叫watchpoint(監視點) 當成員變量被讀取或修改時暫掛
添加method breakpoint 進入/離開此方法時暫掛(Runmethod breakpoint)
添加Exception breakpoint 捕抓到Execption時暫掛(待續)
斷點屬性
hit count 執行多少次數後暫掛 用於循環
enable condition 遇到符合你輸入條件(為ture\改變時)就暫掛
suspend thread 多線程時暫掛此線程
suspend VM 暫掛虛擬機
variables 視圖裡的變量可以改變變量值在variables 視圖選擇變量點擊右鍵change value一次來進行快速調試
debug 過程中修改了某些code後〉save&build>resume>重新暫掛於斷點
From:http://tw.wingwit.com/Article/program/Java/ky/201311/28039.html