| การใช้ super กับ attribute | การใช้ super กับ attribute |
|---|
subject:การใช้ super กับ attribute
content:เพื่ออ้างถึง attribute ของ class แม่
example:class Life { protected String name = "life"; } class Person extends Life { protected String name = "person"; public String getName ( ) { return super.name; } }