Eclipse快捷鍵
生成 注釋
應(yīng)該是選取要注釋內(nèi)容后, ctrl+shift+c 按一下注釋,按兩下取消注釋ctrl+shift+"反注釋!能講ctrl+shift+/ 多行注釋掉的內(nèi)容反注釋掉
CTRL+T 查看接口的實(shí)現(xiàn)
MyEclipse調(diào)試
1.首先在一個(gè)java文件中設(shè)斷點(diǎn),然后運(yùn)行debug,當(dāng)程序走到斷點(diǎn)處就會停下。
2.F5鍵與F6鍵均為單步調(diào)試,
3.F7是跳出函數(shù) step return
4.F8是執(zhí)行到最后。
=====================================
1.Step Into (F5) 跳入
2.Step Over (F6) 跳過
3.Step Return (F7) 執(zhí)行完當(dāng)前method,然后return跳出此method
4.step Filter 逐步過濾
一直執(zhí)行直到遇到未經(jīng)過濾的位置或斷點(diǎn)(設(shè)置Filter:window-preferences-java-Debug-step
Filtering)
5.resume 重新開始執(zhí)行debug,一直運(yùn)行直到遇到breakpoint
6.hit count 設(shè)置執(zhí)行次數(shù) 適合程序中的for循環(huán)(設(shè)置 breakpoint view-右鍵hit
count)
7.inspect 檢查 運(yùn)算。執(zhí)行一個(gè)表達(dá)式顯示執(zhí)行值
8.watch 實(shí)時(shí)地監(jiān)視變量的變化
9.我們常說的斷點(diǎn)(breakpoints)是指line breakpoints,除了line
breakpoints,還有其他的斷點(diǎn)類型:field(watchpoint)breakpoint,method
breakpoint,exception breakpoint.
10.field breakpoint 也叫watchpoint(監(jiān)視點(diǎn)) 當(dāng)成員變量被讀取或修改時(shí)暫掛
11.添加method breakpoint 進(jìn)入/離開此方法時(shí)暫掛(Run-method breakpoint)
12.添加Exception breakpoint 捕抓到Execption時(shí)暫掛(待續(xù)...)
斷點(diǎn)屬性:
1.hit count 執(zhí)行多少次數(shù)后暫掛 用于循環(huán)
2.enable condition 遇到符合你輸入條件(為ture\改變時(shí))就暫掛
3.suspend thread 多線程時(shí)暫掛此線程
4.suspend VM 暫掛虛擬機(jī)
13.variables 視圖里的變量可以改變變量值,在variables 視圖選擇變量點(diǎn)擊右鍵--change
value.一次來進(jìn)行快速調(diào)試。
14.debug
過程中修改了某些code后--〉save&build-->resume-->重新暫掛于斷點(diǎn)
===========================
例如你有如下程序:
public class debugtest {
}
你在(1)處加斷點(diǎn),運(yùn)行到此處時(shí)如果Step Into (F5)為跳入(進(jìn)入函數(shù)),則接著執(zhí)行到(3)。
再執(zhí)行Step Over (F6)執(zhí)行本行,則執(zhí)行到(4)。
最后執(zhí)行Step Return (also F7),則跳出addDays方法,跳到(2)
轉(zhuǎn)http://blog.sina.com.cn/s/blog_624aa0960100fkrr.html
MyEclipse 中顯示行號 要想顯示行號,按住 Ctrl + F10 選擇 show Line Numbers
eclipse/myeclipse注釋模板的修改 alt+shitf+j
Window --> Java --> Code Style --> Code Templates --> Comments --> types --> Edit
/**
*
* 項(xiàng)目名稱:${project_name}
* 類名稱:${type_name}
* 類描述:
* 創(chuàng)建人:${user}
* 創(chuàng)建時(shí)間:${date} ${time}
* 修改人:${user}
* 修改時(shí)間:${date} ${time}
* 修改備注:
* @version
*
*/
http://www.javaeye.com/topic/585168
myeclipse中如何配置自定義的代碼排版格式 ctrl+shift+f
posted on 2010-05-16 22:41 smallfa 閱讀(480) 評論(0) 編輯 收藏 所屬分類: myeclipse