java的幾個入門小程序
阿新 • • 發佈:2018-03-15
col 成員變量 比較 oid pan 聲明 經典 名稱 沒有
1.先是最最經典的hello world!
public class Hello { public static void main(String args[]) { System.out.println("hello world!"); } }
hello world!
2.print與println的區別
public class Hello { public static void main(String args[]) { System.out.print("hello world!"); System.out.println("hello world!"); System.out.println("hello world!"); } }
hello world!hello world!
hello world!
顯然println結束後有換行而print沒有,所以用println比較好
3.println的用法
public class Hello { public static void main(String args[]) { int x=2; System.out.println(x+"*"+x+"="+(x*x)); } }
2*2=4
這裏要輸出的數字用“+”號連接
4.常量的聲明
public class Hello { static final int YEAR=365; public static void main(String args[]) { System.out.println("兩年等於"+2*YEAR+"天"); } }
兩年等於730天
public class Hello { public static void main(String args[]) { final int YEAR=365; System.out.println("兩年等於"+2*YEAR+"天"); } }
兩年等於730天
常量賦值語法final+數據類型+變量名稱=變量值,當常量用於一個類的成員變量時,必須給常量賦值。
5.變量的聲明
public class Hello { public static void main(String args[]) { int num=3; char ch=‘a‘; System.out.println(num+"是整數"); System.out.println(ch+"是字符"); } }
3是整數
a是字符
這些程序均是從java書中摘抄的,將書中的代碼自己用編譯器run一遍,對於像我這種初學者很有好處。
java的幾個入門小程序