猿问

试图弄清楚如何使用“Date()”进行作业

基本上,我需要制作closeDate = null和openDate当前日期。使用最新版本的 Java SDK 和 netbeans。


import java.util.Date;


public class Task {


    Date openDate = new Date();

    Date closeDate = new Date();

    public int taskType;


    public Task(int taskType)

    {   

        this.taskType = taskType;

    }


    static void setOpenDate(Date openDate)

    {


    }


    static void setCloseDate(Date closeDate)

    {


    }


    static void setTaskType(int taskType)

    {


    }


    static int getTaskType()

    {

    }


    static Date getOpenDate()

    {

        return openDate;

    }


    static Date getCloseDate()

    {

        return closeDate;

    }


}

这就是我所拥有的。我对这个痛苦任务的其他部分失去了理智,但我只需要某种形式的清晰度。


明月笑刀无情
浏览 167回答 2
2回答

偶然的你

嗨,请在下面找到示例程序,以获取您调用时当前时间的日期以及关闭日期为空,public class UpdateDate {    LocalDateTime getCurrentDate(){    LocalDateTime openDate = LocalDateTime.now();    System.out.println("Current date: "+openDate);    return openDate;}Date getClosingDate(){    Date closingDate = null;    System.out.println("Closing date: "+closingDate);    return closingDate;}public static void main(String[] args) {    UpdateDate ud = new UpdateDate();    ud.getCurrentDate();    ud.getClosingDate();}}它产生以下输出,您可以使用Java中Date类的格式和解析方法将其更改为您喜欢的任何格式。output Current date: 2018-08-22T18:55:35.906Closing date: null
随时随地看视频慕课网APP

相关分类

Python
我要回答