- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将如何实现 dayNumber_of_quarter
?
例如3 月 3 日(Q1)应返回 62 = 31(1 月)+ 28(2 月)+ 3(3 月),4 月 29 日(Q2)应返回 29。
到目前为止我的代码:
int month = getMonth(date);
int quarter = getQuarter(date);
int date1 = getDate(date);
int year = getYear(date);
int monthMod = month % 3;
if (monthMod == 0) monthMod = 3;
//System.out.println(monthMod);
int countNumDaysOfQuarter = 0;
if (monthMod == 1) countNumDaysOfQuarter = getDate(date);
if (monthMod == 2) countNumDaysOfQuarter = getDate(date) + getCountOfDaysInMonth(date1, month - 1, year);
if (monthMod == 3) countNumDaysOfQuarter = getDate(date) + getCountOfDaysInMonth(date1, month - 1, year) + getCountOfDaysInMonth(date1, month - 2, year);
最佳答案
这是一个使用 Java 8 的简单实现:
public static long dayOfQtr(LocalDate date) {
LocalDate firstDayOfQtr = LocalDate.of(date.getYear(), (qtr(date) - 1) * 3 + 1, 1);
return ChronoUnit.DAYS.between(firstDayOfQtr, date) + 1;
}
public static int qtr(LocalDate date) {
return (date.getMonthValue() - 1) / 3 + 1;
}
测试
for (int i = 1; i <= 12; i++) {
LocalDate date = LocalDate.of(2016, i, i);
System.out.println(date + " is day " + dayOfQtr(date) + " of Q" + qtr(date));
}
输出
2016-01-01 is day 1 of Q1
2016-02-02 is day 33 of Q1
2016-03-03 is day 63 of Q1
2016-04-04 is day 4 of Q2
2016-05-05 is day 35 of Q2
2016-06-06 is day 67 of Q2
2016-07-07 is day 7 of Q3
2016-08-08 is day 39 of Q3
2016-09-09 is day 71 of Q3
2016-10-10 is day 10 of Q4
2016-11-11 is day 42 of Q4
2016-12-12 is day 73 of Q4
关于java - 每季度的天数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36468769/
我有以下数据框: Data <- data.frame( date = c("2001-01-01", "2001-02-01", "2001-03-01", "2001-04-01", "200
我在基于 [Date] 字段的选择查询中使用这些公式。学期为 1 月至 6 月 1 个学期,7 月至 12 月为 2 个学期。季度是 3 个月的版本(1 月至 3 月等为 1)。 case when
我有一些用户上传的数据,需要根据用户选择的时间段进行存储和排序。期间应该只支持月年或季度年,没有其他,类似于下面: +----+---------+-------+ | id | pe
我有一个 pandas DataFrame,其中有一列(标题)需要被解析为日期时间对象,以便我可以将其转换为时间序列。 Title Gross Domestic Product: Quar
oracle按天,周,月,季度,年查询排序 ? 1
我有 32 年的数据要放入分区表中。但是 BigQuery 说我超过了限制(4000 个分区)。 对于像这样的查询: CREATE TABLE `deleting.day_partition` PAR
我们将从以下数据表开始: id date 1: 1 2016-03-31 2: 1 2015-12-31 3: 1 2015-09-30 4: 1 2015-06-
我知道与计划相关的里程碑的年份和季度(例如“2010”和“4”),并且我想从中选择/创建一个日期时间。有许多巧妙的方法可以用特定日期的格式(“qq”)来识别季度,但不能反过来(或者有吗?)。这是使用
我需要获得给定日期的相应三个月(3 个月的时间段,即 1 月、2 月和 3 月的第一个三个月)。使用 c# System.DateTime 结构我没有设法找到我正在寻找的方法。所以我这样解决了: Da
我的数据集包含 48 周内每一天的信息。[我的数据集截图][1] 我希望创建一个名为“quarter”的新变量,将每一个week变量值=1-12的观测值标记为“a”,意思是“第一季度”;另外,将每个周
我正在寻找一个 java 库,当给出起始日期和截止日期时,它将返回最适用的日期列表(以周、月、季度或年为单位)。我已经手动完成了这项工作,我想知道这是否已经作为标准包的一部分实现和测试。 例子 给定
我想做两件事: 我想将 x 轴格式设置为四分之一。我的时间序列数据以季度为单位。例如,对于日期 2012-12-31 我希望它显示为 2012Q4,对于 2013-03-31 作为 2013Q1 ,对
我是一名优秀的程序员,十分优秀!