练习java文档YearMonth

本文详细介绍了Java中的YearMonth类,包括如何创建、转换、比较和操作YearMonth对象。示例代码展示了atDay、atEndOfMonth、isLeapYear等方法的用法,以及加减月份和年的操作。此外,还涵盖了格式化输出和日期验证的功能。
摘要由CSDN通过智能技术生成

YearMonth
方法
adjustInto()涉及到Temporal先放着
atDay()
atEndOfMonth()
compareTo()也是差值
equals()也是值相同就返回true
format()
from()涉及到TemporalAccessor先放着
get()涉及到TemporalField先放着
getLong()涉及到TemporalField先放着
getMonth()
getMonthValue()
getYear()
hashCode()正常的hashCode和Year返回年不一样
isAfter()
isBefore()
isLeapYear()
isSupported()涉及到TemporalField和TemporalUnit先放着
isValidDay()
lengthOfMonth()
lengthOfYear()
minus()涉及到TemporalUnit和TemporalAmount先放着
minusMonths()
minusYears()
now()
of()
parse()要05不能5
plus()涉及到TemporalUnit和TemporalAmount先放着
plusMonths()
plusYears()
query()涉及到TemporalQuery先放着
range()涉及到TemporalField先放着
toString()
until()涉及到Temporal和TemporalUnit
with()涉及到TemporalAdjuster和TemporalField先放着
withMonth()
withYear()

import java.util.function.*;
import java.util.stream.*;
import java.util.*;
import java.math.*;
import static  java.util.Calendar.*;
import java.time.*;
import java.time.format.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class Test
{
	public static void main(String[] args) throws Exception
	{

		//先练书上的例子
		//YearMonth
		YearMonth ym = YearMonth.of(111,11);
		LocalDate localDate = ym.atDay(11);
		System.out.println(localDate);
		
		localDate = ym.atEndOfMonth();
		System.out.println(localDate);

		YearMonth ym1 = YearMonth.of(111,11);
		YearMonth ym2 = YearMonth.of(111,11);
		System.out.println(ym1.compareTo(ym2));
		System.out.println(ym1.equals(ym2));

		ym = YearMonth.of(111,8);
		System.out.println(ym);
		System.out.println(ym.format(DateTimeFormatter.ofPattern("yyyy年MM月")));

		ym = YearMonth.of(2021,1);
		System.out.println(ym.getMonth());
		System.out.println(ym.getMonthValue());
		System.out.println(ym.getYear());
		ym1 = YearMonth.of(2222,11);
		System.out.println(ym.hashCode());
		System.out.println(ym1.hashCode());

		ym1 = YearMonth.of(2011,2);
		ym2 = YearMonth.of(2012,2);
		System.out.println(ym1.isAfter(ym2));
		System.out.println(ym1.isBefore(ym2));
		System.out.println(ym1.isLeapYear());
		System.out.println(ym2.isLeapYear());
		
		System.out.println(ym1.isValidDay(29));
		System.out.println(ym2.isValidDay(29));

		System.out.println(ym1.lengthOfMonth());
		System.out.println(ym2.lengthOfMonth());
		System.out.println(ym1.lengthOfYear());
		System.out.println(ym2.lengthOfYear());

		ym1 = YearMonth.of(2020,10);
		System.out.println(ym1);
		ym1 = ym1.minusMonths(2);
		System.out.println(ym1);
		ym1 = ym1.minusYears(2);
		System.out.println(ym1);

		ym1 = YearMonth.now();
		System.out.println(ym1);
		Clock clock = Clock.systemUTC();
		ym1 = YearMonth.now(clock);
		System.out.println(ym1);
		ZoneId zid = ZoneId.systemDefault();
		ym1 = YearMonth.now(zid);
		System.out.println(ym1);

		ym = YearMonth.of(2011,12);
		System.out.println(ym);
		ym = YearMonth.of(2011,Month.MARCH);
		System.out.println(ym);

		ym = YearMonth.parse("2022-05");
		System.out.println(ym);
		ym= YearMonth.parse("2222年1月",DateTimeFormatter.ofPattern("yyyy年M月"));
		System.out.println(ym);

		ym = YearMonth.now();
		ym = ym.plusMonths(2);
		System.out.println(ym);
		ym = ym.plusYears(1);
		System.out.println(ym);
		System.out.println(ym.toString());

		ym = YearMonth.now();
		System.out.println(ym);
		ym = ym.withMonth(2);
		System.out.println(ym);
		ym = ym.withYear(1111);
		System.out.println(ym);

	}
	
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

细水长流cpu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值