| คุณลักษณะของ Concrete Class | เป็น Class ทั่วๆไป ที่สามารถสร้าง Object ได้ |
|---|
subject:คุณลักษณะของ Concrete Class
syntax:class class_name { attribute; method; }
content:เป็น Class ทั่วๆไป ที่สามารถสร้าง Object ได้
example:class Person { private String firstName; private String lastName; private int age; public void setFirstName ( String firstName ) { this.firstName = firstName; } public String getFirstName () { return this.firstName; } }