e379. determining the day-of-week for a particular date.txt

来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 8 行

TXT
8
字号
The day-of-week is an integer value where 1 is Sunday, 2 is Monday, ..., and 7 is Saturday 
    Calendar xmas = new GregorianCalendar(1998, Calendar.DECEMBER, 25);
    int dayOfWeek = xmas.get(Calendar.DAY_OF_WEEK);    // 6=Friday
    
    Calendar cal = new GregorianCalendar(2003, Calendar.JANUARY, 1);
    dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);         // 4=Wednesday

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?