Click to edit Master subtitle style
PROPERTIES
Khoa Công nghệ thông tin
Trưng Đại học Ngoại ngữ - Tin học, TP.HCM
CHƯƠNG 4:
1
do dùng properties
Tạo properties
Auto Implemented properties
Object Initializer
NỘI DUNG
2
DO DÙNG PROPERTIES
3
dụ:
Nhu cầu: Bên ngoài lớp thể truy cập giá trị
seconds
do dùng properties
class Time
{
private int seconds;
}
4
Giải pháp cổ điển”: Tạo method trả về g trị
second method n g trị cho second
do dùng properties
class Time
{
private int seconds;
public int GetSeconds()
{
return seconds;
}
public void SetSeconds(int seconds)
{
this.seconds = seconds;
if (this.seconds < 0)
this.seconds = 0;
}
}
5