gpt4 book ai didi

java - 在一行中设置日期

转载 作者:IT老高 更新时间:2023-10-28 20:35:41 28 4
gpt4 key购买 nike

根据 Java API,构造函数 Date(year, month, day) 已被弃用。我知道我可以用以下代码替换它:

Calendar myCal = Calendar.getInstance();
myCal.set(Calendar.YEAR, theYear);
myCal.set(Calendar.MONTH, theMonth);
myCal.set(Calendar.DAY_OF_MONTH, theDay);
Date theDate = myCal.getTime();

但是,我想要更短的内容来替换它(最好是一到两行)。

最佳答案

您可以使用 new GregorianCalendar(theYear, theMonth, theDay) .getTime():

public GregorianCalendar(int year, int month, int dayOfMonth)

Constructs a GregorianCalendar with the given date set in the default time zone with the default locale.

关于java - 在一行中设置日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2877532/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com