5.3 Getters And Setters
File Location
Discussion
public class Date
{
private int month = 7;
public int Month
{
// reads value
get
{
return month;
}
// inserts correct value
set
{
if ((value > 0) && (value < 13))
{
month = value;
}
}
}
}Last updated