- // 這是一個簡單的Java應用程式範例
- import java.io.*;//for 鍵盤輸入
- import java.lang.Math;
- import java.util.ArrayList;
- public class Hello
- {
- public static void main(String args[])throws IOException
- {
- add(10,20);
- add(3.5,6.2);
-
- add(10,20,30);
- add(1.5,20);
- add("ABC","DEF");
-
- }
- public static void add(int a,int b)
- {
- System.out.println("呼叫整數");
- System.out.println(a+b);
- }
- public static void add(double a,double b)
- {
- System.out.println("呼叫小數");
- System.out.println(a+b);
- }
-
- }
-
- class Star{
- int i;
- Star()
- {
- i = 10;
- }
- Star(int j)
- {
- this.i = j;
- }
- Star(String s)
- {
- this.i = 300;
- }
- }
複製代碼 |