係統粉 > 電腦問答 > 其他問答

已解決eclipse中怎麼使用system.out.println

提問者:8090李先森  |  瀏覽次  |  提問時間:2017-04-04  |  回答數量:2

eclipse中怎麼使用system.out.printlnpublic class Demo { public static void main(String[] args){ System.out.println("輸出語句到控製...

已有2條答案
雨中浮客

雨中浮客

回答數:70  |  被采納數:120

public class Demo {
public static void main(String[] args){

System.out.println("輸出語句到控製台");
}
}syso alt+/
2017-04-04 20:45:23
讚 7
文袖

文袖

回答數:14  |  被采納數:37

(1)Ctrl+Space
說明:內容助理。提供對方法,變量,參數,javadoc等得提示,應運在多種場合,總之需要提示的時候可先按此快捷鍵。
注:避免輸入法的切換設置與此設置衝突
(2)Ctrl+Shift+Space
說明:變量提示
(3)Ctrl+/
說明:添加/消除//注釋,在eclipse2.0中,消除注釋為Ctrl+\
(4)Ctrl+Shift+/
說明:添加/* */注釋
(5)Ctrl+Shift+\
說明:消除/* */注釋
(6)Ctrl+Shift+F
說明:自動格式化代碼
(7)Ctrl+1
說明:批量修改源代碼中的變量名,此外還可用在catch塊上.
(8)Ctril+F6
說明:界麵切換
(9)Ctril+Shift+M
說明:查找所需要得包
(10)Ctril+Shift+O
說明:自動引入所需要得包
(11)Ctrl+Alt+S
說明:源代碼得快捷菜單。其中的Generate getters and setters 和 Surround with try/catch
block比較常用.建議把它們添加為快捷鍵.快捷鍵設置在windows->preferences->Workbench->Keys
2017-04-04 20:52:43
讚 1
相關問答
最新其他問答
解決方法