Java Class attribute
Java Class Attribute
Khai báo Attribute
Cú pháp:
accessModifier dataType attributeName;Ví dụ:
public class Car {
// Attribute
private String color;
private int maxSpeed;
}Truy cập Attribute
Getter và Setter
Ví dụ:
Khởi tạo Attribute
Ví dụ:
Bài tập thực hành
Tạo lớp Book
Tạo lớp Student
Bài tập thêm
Last updated