Giả sử đã có TimeBean như sau: public class TimeBean implements Serializable {
private int hours, minutes, seconds; public TimeBean()
{
hours =minutes=seconds=0;
}
public int getHours()
{
return hours;
}
public void setHours(int h)
{
if(h>=0 && h <24)hours=h;
}
}
Hãy cho biết đoạn mã sau trong trang JSP sẽ hiển thị gì trên trình duyệt?
24)hours=h;
Đáp án đúng: B