目前共有6篇帖子。
我決定開始學習Java的基礎知識
1樓 巨大八爪鱼 2015-4-3 23:12
這是今天晚上我編寫的程序:

public class HelloWorldApp {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.out.println("Hello World!");
       
        float Float = 2.786412F; // ends in F
        System.out.println(Float);
       
        double Double = 3.786654998741563;
        System.out.println(Double);
       
        final byte MALE = 1;
        final byte FEMALE = 2;
        Double += MALE * FEMALE;
        System.out.println(Double);
       
        Double = 1.3/7;
        System.out.println(Double);
        final byte ROJO = 3;
        final byte VERDE = 4;
        System.out.println(ROJO * VERDE);
       
        byte hasta = 0x38;
        hasta <<= 2;
        hasta &= 0x74;
        System.out.println((char)hasta + "\u0028\"");
       
        boolean bool = true;
        if (bool) {
            byte f = 15;
            byte g = f++;
            System.out.println(g);
            byte h = ++f;
            System.out.println(h);
           
            int a[] = {12, 15, 32, 14, 56, 27};
            a[2]++;
           
            String fes = "¿Cómo estás?";
            System.out.println(fes);
        }
    }

}

2樓 巨大八爪鱼 2015-4-3 23:12
輸出內容:
Hello World!
2.786412
3.786654998741563
5.786654998741563
0.18571428571428572
12
`("
15
17
¿Cómo estás?

3樓 巨大八爪鱼 2015-4-3 23:13
我在官方網站上下載了最新版本的eclipse,然後又下載了JDK8
現在我電腦上同時安裝了JDK7和8
4樓 巨大八爪鱼 2015-4-3 23:13
要學習安卓程序的開發就必須要先學習java基礎知識
5樓 巨大八爪鱼 2015-4-3 23:16
Eclipse IDE for Java Developers

Version: Luna Service Release 2 (4.4.2)
Build id: 20150219-0600
6樓 polygon1024 2015-4-5 11:57
回复:4楼
你可以尝试AIDE

回復帖子

內容:
用戶名: 您目前是匿名發表
驗證碼:
 
 
©2010-2024 Arslanbar [手機版] [桌面版]
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。