WEB.java.開發工具認識

開發工具的介紹

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

相關文章
相關標籤/搜索