main
if
switch
for
while
do
continue
break
goto
return
sizeof
_Alignof
const
volatile
restrict
struct
union
_Alignas
typedef
_Static_assert
inline
_Noreturn
确定此 month_day 是否存储合法的月日组合。
month_day
若 month() 表示合法月份( month().ok() == true ), unsigned{day()} >= 1 且 unsigned{day()} <= D ,其中 D 为 month() 所表示的月中的日数,则组合合法。二月中的日数被认为是 29 。
month()
若月和日的组合合法则为 true ,否则为 false 。