jash.liao的JAVA整理教學:JAVA物件導向-定義/使用方法

jash.liao的JAVA整理教學:JAVA物件導向-定義/使用方法

jash.liao的JAVA整理教學:JAVA物件導向定義/使用方法 

 

線上執行:http://www.tutorialspoint.com/compile_java_online.php / http://www.compilejava.net/

code2htmlhttp://tohtml.com/ 

 

 

class A{
    publicString StrValue;
    publicvoid ShowValue()
    {
        System.out.println(StrValue);
    }
    publicint add(int a,int b)
    {
        int c;
        c = a + b;
        return c;
    }
}
publicclass HelloWorld{
 
     publicstaticvoid main(String[]args){
        A a=new A();
        a.StrValue="Hello World";
        int result = a.add(11,22);
        a.ShowValue();
        System.out.println(result);

     }

}

 

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *