java如何判断日期在哪个月份

java如何判断日期在哪个月份,第1张

如果你庆梁旦的日期是date类型的渣稿直接.getMonth()+1就能获取到这个时间的月份

如誉扰果是String类型的,就转成date类型然后再.getMonth()+1获得月份

public class MonthAtSeason {

public static void main(String[] args) {

int month=4 // 声明月份变量

switch (month) {

case 12:

case 1:

case 2:

System.out.println(month+"月份是冬季")

break

case 3:

case 4:

case 5:

System.out.println(month+"月份是春季")

break

case 6:

case 7:

case 8:

System.out.println(month+"月份是夏季")

break

case 9:

case 10:

case 11:

System.out.println(month+"月份是秋季")

break

default:

System.out.println(month+"不是合法的掘雀月份数值"森散首此数)

break

}

}

}

package test

import java.util.Calendar

public class Test1 {

public static void main(String[] args) throws Exception {

Calendar now = Calendar.getInstance()

System.out.println(now.get(Calendar.MONTH) + 1)//根据月份,就可以判断季月了

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12401424.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-25
下一篇 2023-05-25

发表评论

登录后才能评论

评论列表(0条)

保存