Intellij IDEA 使用技巧一
阿新 • • 發佈:2019-01-06
前言
個人之前一直用eclipse做c++、java開發,換到新公司,大家都用IDEA開發工具,所以最近也在學習,總結下個人心得。 1、文字編輯 刪除 ctr + y 複製 ctr + D 2、智慧提示 提示 ctr + space 智慧提示 ctr + shift + space 完成當前語句 ctr + shift + enter 建議提示為引數 ctr + alt + P 對程式碼重新排列格式 Ctrl + Alt + L 對imports進行優化 Ctrl + Alt + O3、位置定位
定位到下一個或上一個錯誤 F2 / Shift + F2
定位檔案頭 ctr+G (定位到檔案行數) 定位檔案尾 ctr+G 定位到程式碼塊開始 ctr + [ 定位到程式碼塊結束 ctr + ] 回到最近的視窗 F12 回到之前的檔案 alt + left 回到之後的檔案 alt + right 定位到最後編輯位置 Ctrl + Shift + Backspace 從tool window或其他window切換到檔案編輯 esc 關閉最近開啟的視窗 shift + esc4、類、方法、檔案定位
5、類、方法的結構檢視、定位
跳到類或方法的宣告 ctr + B 定位到類的父類、介面 ctr + U 檢視類的繼承結構 ctr + H 檢視方法的繼承結構 ctr + shift + H 檢視類或方法被呼叫情況 ctr + alt +H 原地參看類、方法的宣告 Ctrl + Shift + I6、執行與除錯
Ctrl + F9 Make project (compile modifed and dependent)
Ctrl + Shift + F9 Compile selected file, package or module
Alt + Shift + F10 Select configuration and run
Alt + Shift + F9 Select configuration and debug
Shift + F10 Run
Shift + F9 Debug
Ctrl + Shift + F10 Run context configuration from editor
Debugging
F8 Step over
F7 Step into
Shift + F7 Smart step into
Shift + F8 Step out
Alt + F9 Run to cursor
Alt + F8 Evaluate expression
F9 Resume program
Ctrl + F8 Toggle breakpoint
Ctrl + Shift + F8 View breakpoints