Calendar.DAY_OF_WEEK
is a constant number, used to access fields within the Calendar object.
Calendar.getInstance().get(Calendar.DAY_OF_WEEK)
uses this constant number to read the value of the "day of week" field from the calendar.
This is somewhat unusual design. Instead of adding dozens of methods like "getDayOfWeek", "setDayOfWeek", and "addDayOfWeek" for all the calendar fields, the designers of the Calendar class added "get" "set" and "add" methods that take a numeric field identifier as the parameter.
Note that Calendar is nowadays considered a "legacy" class - for new code it's better to use the classes in the java.time
package. The modern way to get today's day of the week is:
DayOfWeek dow = LocalDate.now().getDayOfWeek();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…