jash.liao的JAVA整理教學:JAVA物件導向-定義/使用方法
jash.liao的JAVA整理教學:JAVA物件導向–定義/使用方法
線上執行:http://www.tutorialspoint.com/compile_java_online.php / http://www.compilejava.net/
code2html:http://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); } } |