สร้าง method Java ตัวอย่าง พร้อมโค้ด บทความนี้สอนสร้าง method หรือฟังก์ชันการทำงานด้วยภาษา Java พร้อมกับสร้าง object หรือ instance จาก class เพื่อเรียกใช้งาน method ดังกล่าว และแสดงผลลัพธ์ออกสู่หน้าจอ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง สร้าง method Java
class Main {
public static void main(String args[]) {
Demo demo = new Demo();
int sum = demo.plus( 4, 8 );
System.out.print( "method plus คืนค่าเท่ากับ "+sum );
}
}
class Demo {
private int a, b, c;
public int plus( int a, int b ) {
this.a = a;
this.b = b;
return this.a + this.b;
}
}
ผลลัพธ์
method plus คืนค่าเท่ากับ 12
สร้าง method Java จากตัวอย่างสร้าง class Demo พร้อม method ชื่อ plus รับค่า parameters 2 ตัวชนิด int คือ a และ b โดย method นี้ทำหน้าที่นำตัวแปร a และ b บวกกัน และ return ค่าด้วยชนิด int วิธีการใช้งาน method คือ สร้าง object จาก class เช่น Demo demo = new Demo() และเรียกใช้ method plus ด้วย demo.plus( 4, 8 ) ได้ผลลัพธ์เท่ากับ 12