Eclipse快捷鍵

充满希望与信心發表於2024-04-10

alt + / 程式碼提示

ctrl + alt + 方向鍵上           向上複製【有可能會有衝突】
ctrl + alt + 方向鍵下			向下複製【有可能會有衝突】

ctrl + /;						單行註釋/取消註釋	
ctrl + shift + /				    多行註釋	
ctrl + shift + \				    多行取消註釋
alt + shift + j					文件註釋
alt + shift + a					批次操作【成員變數等】

ctrl + shift + o				    導包或者刪除多餘的包	

ctrl + shift + 回車				向上插入一行	
shift + 回車					向下插入一行
ctrl + d;						刪除選中行	

  alt + 方向鍵上 程式碼向上移動
alt + 方向鍵下 程式碼向下移動

ctrl + 滑鼠左鍵               程式碼跟蹤
alt + 方向鍵左				跟蹤上一個編輯處
alt + 方向鍵右				跟蹤下一個編輯處

ctrl + shift + f				    程式碼格式化	
ctrl + shift + t				    查詢jdk自帶的類和自定義的類
ctrl + shift + r				    查詢自定義的類
ctrl + o						快速檢視方法
ctrl + f 						查詢指定單詞(可以替換指定的單詞)
ctrl + shift + x 			        將選中的全大寫
ctrl + shift + y 			        將選中的全小寫

ctrl + shift + 雙擊L		        重新設定快捷鍵	

alt + shift + s Generate Constructor using Field		構造方法、toString、hashCode和equals
alt + shift + s Generate Getters And Setters		getter/setter

  設定字符集:以後開發前端如:HTML、css、js 和後臺java以及資料庫都要設定為UTF-8
1.滑鼠移到專案上,右鍵,properties=>選擇具體字符集
2.windows=>pererfrences=>general=>workspace=>選擇具體字符集
3.以後用到再說

設定快捷鍵:
		1.ctrl+shift+連續兩個L		 重新設定快捷鍵開啟設定視窗
		2.輸入要設定的快捷鍵 => unbind commond => binding設定新的快捷鍵 => apply => ok
	
設定自定義程式碼提示功能:
		windows => pererfrences => java => editor => templates
		1.根據需要或者new建立新的程式碼提示
			name: 輸入提示的程式碼
			discription: 說明該程式碼作用或用途
			pattern: 具體生成的程式碼
		2.或者edit修改

相關文章