| คุณลักษณะของ overriding method | เป็น method ของ subclass ที่มีคุณสมบัติเหมือน superclass ทุกประการ |
|---|
subject:คุณลักษณะของ overriding method
content:เป็น method ของ subclass ที่มีคุณสมบัติเหมือน superclass ทุกประการ แต่ต่างกันที่การดำเนินการ ( implement )
example:class Person { private String name; public void setName ( String name ) { this.name = "FullName : " + name; } } class Bamboo extends Person { public void setName ( String name ) { this.name = name; } } Bamboo kon = new Bamboo ( ); kon.setName ( "bamboolabcode.com" );