码迷,mamicode.com
首页 > 编程语言 > 详细

java获取某年某月某日是星期几(极简方法)

时间:2016-06-06 00:39:34      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:

package com.ttest2;

class test {
public int GetWeek(int y, int m, int d) {
if (m < 3) {
m += 12;
--y;
}
int w = (d + 1 + 2 * m + 3 * (m + 1) / 5 + y + (y >> 2) - y / 100 + y / 400) % 7;
return w;
}
}

public class Demo2 {
public static void main(String[] args) {

test t = new test();

System.out.println(t.GetWeek(2016, 6, 3));
}
}

java获取某年某月某日是星期几(极简方法)

标签:

原文地址:http://www.cnblogs.com/victorAii/p/5562352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!