(albertyi原創)Eclipse 安裝,調試快速入門

來源:互聯網
上載者:User
快速入門|原創
                               (albertyi原創)Eclipse 安裝,調試快速入門



最近一直用UltraEdit和gmake來做java程式,感覺確實很輕省,但是常常懷念VC強大的程式編輯,調試功能。。。

遂決定找一個強大的IDE環境,經過分析網上N個文章,我的目標逐漸鎖定了Eclipse;

安裝非常簡單,從網上下載了最新的Eclipse3.1.0以及最新的j2sdk1.4.2.

一、安裝步驟如下:

1、卸載機器上老版本的JDK

2、安裝最新的JDK1.4.2,安裝好之後需要配置環境變數JAVA_HOME,path,classpath.

(注意:必須要把JDK1.4.2的路徑設定再最前面,不然Eclipse啟動會報錯,“need jdk 1.4.1, available jdk1.2.1”,這個是因為我的機器上裝了oracle,而oracle內建的jdk版本低,且他在環境變數中的位置比剛才安裝的jdk1.4.2的位置前"。)

環境變數驗證方法:

在cmd中輸入path就能看到整體的位置

example:

C:\>pathPATH=f:\oracle\ora92\bin;C:\j2sdk1.4.2\bin.;C:\j2sdk1.4.2\lib.;C:\Program Files\Oracle\jre\1.3.1\bin;

上面這樣的path設定就是正常的,沒有問題,可以見到oracle內建的jdk放在jdk1.4.2的後面。

3、解壓下載的的Eclipse3.1.0的壓縮包,即可運行。

二、強大的調試功能:

1、首先建立一個簡單的helloworld類用於調試測試。

package simple;//

public class helloworld {

 /**  * @param args  * @author albertyi  * @param String[] args  */ public static void main(String[] args) {  System.out.println("enter  main!");  test1();  test2();  test3();  System.out.println("exit  main!"); }  public static void test1(){  System.out.println("enter  test1!");  System.out.println("exit  test1!"); }  public static void test2(){  System.out.println("enter  test2!");  System.out.println("exit  test2!"); }  public static void test3(){  System.out.println("enter  test3!");  System.out.println("exit  test3!"); }}

2、選擇,菜單window->Open perspective->other->debug,把整體視圖切換到debug模式下

3、Ctrl+Shift+B在需要調試的地方加入一個斷點

4、選擇菜單 Run->Debug as-> java application

5、F6是單步向下(Step Over),F5是單步進入(Step into)

6、在Console視窗中能看到啟動並執行結果

enter  main!enter  test1!exit  test1!enter  test2!exit  test2!enter  test3!exit  test3!exit  main!

是不是很簡單就能向VC一樣調試了^_^










相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.