thaiall logomy background

กระดานแสดงความคิดเห็น

my town
ตัวอย่าง polymorphism แบบ dynamic binding จาก 3 class
class mother {
public String home() { String x = "old"; return x;}
}
// ==================
class child extends mother {
public String home() { String x = "new"; return x;}
}
// ==================
class work{
public static void main (String args[]) {
mother x = new child();
System.out.print(x.home()); // new
}
}
// Dynamic Binding of method is polymorphism
// if home is static will use home() in mother
// compile will check in mother
// run will check in child so output is new
// no problem is not override in child
// study from ajarn Passakorn Pruekpitakkul

จากคุณ : บุรินทร์ .
02:46am (15/07/07)
ทความเกี่ยวกับไอทีในชีวิตประจำวัน (Information Technology in Life) ถูกเขียนลงในหนังสือพิมพ์ฅนเมืองเหนือ เป็นหนังสือพิมพ์รายสัปดาห์ เริ่มเขียนปลายปีพ.ศ. 2549 จนถึงมิถุนายน พ.ศ.2560 รวมได้ 611 บทความมีโฮมเพจอยู่ที่ http://www.thaiall.com/itinlife และ http://www.thaiall.com/opinion เพื่อเป็นแหล่งแบ่งปันเรื่องราวที่ได้พบ ได้อ่าน ได้ปฏิบัติ แล้วนำมาเรียบเรียงแบ่งปันแก่เพื่อนชาวไทย และส่งให้กองบรรณาธิการนำไปตีพิมพ์ลงในหนังสือพิมพ์ท้องถิ่นของจังหวัดลำปาง
Opinion แปลว่า ความคิดเห็น วาทะ ความเชื่อ ที่สามารถสะท้อนออกมาให้อยู่ในรูปของวรรณกรรม หรืองานเขียน ที่เรื่องราวจะถูกร้อยเรียงเป็นตัวอักษร ไล่เรียงตามลำดับให้ได้รู้และเข้าใจความคิดความเห็น ที่ไม่เลือนหายไปตามเวลาเหมือนความทรงจำ
version 1.3 (15 ตุลาคม 2566)
Thaiall.com
Thaiall.com