Jdk
Eclipse IBM
Myeclipse eclipse的衍生版,開發了不少收費插件
UE18java
操做:重置視圖
路徑:Window/Reset Perspectivewindows
Myeclipse視圖、Java視圖、ebug視圖
建立java工程,引入本身安裝的jdk
建立類,同時建立包eclipse
聯想:Alt+/ windows/Preference/general/keys/Content Assist工具
Alt+/進行檢查
package com.zhonghuashengshi;
public class Demo0 {開發工具
public static void main(String[] args) { System.out.println("hello,heima!"); }
}插件
package com.zhonghuashengshi;code
public class Person {ip
public void eat () { System.out.println("吃。。。。。。。。。。。。。。"); } public void run () { System.out.println("跑。。。。。。。。。。。。。。"); } public static void main(String[] args) { Person p = new Person(); p.eat(); p.run(); }
}開發
package com.zhonghuashengshi;it
import org.junit.Test;
public class Person {
@Test public void eat () { System.out.println("吃。。。。。。。。。。。。。。"); } public void run () { System.out.println("跑。。。。。。。。。。。。。。"); }
}
package org.huawei;
import org.junit.Test;
public class TestPerson {
@Test public void eatTest(){ System.out.println("dd"); }
}
內容提示:Alt + / 快速修復:Ctrl + 1導包:Ctrl + shift + O進入方法內部Ctrl+左鍵向前向後:Alt + 左右方向鍵添加塊註釋 Ctrl+Shift+/除去塊註釋 Ctrl+Shift+\添加/除去行註釋 Ctrl+/複製當前行Ctrl+Alt+上/下(在某些機器上與顯卡快捷鍵衝突)刪除當前行Ctrl+D查看方法說明F2