package com.test;public class YuFa {    @SupPRessWarnings("unused")    public static void main(String[] args) {        // {}作用域    int h;//作用域中不使用的變量,無需初始化    int age = 10;//變量開頭以字母下劃線$等,不能以數字開頭;這是注釋!    /*age=age+10;              這是多行注釋;     *     */    byte a=127;    int i=a;//自動類型轉換            int b=12;    byte g=(byte) b;//強制類型轉換        short c=15;    float d=12.3f;    long e=13l;    double f=15f;    System.out.println(a+" "+b+" "+c+" "+d);    System.out.println("a="+a+",i="+i);    }}         
新聞熱點
疑難解答