如何在 BlueJ "Create Object" 对话框中输入 LocalDate 值

How to enter a LocalDate value into BlueJ "Create Object" dialog box

我没有尝试将日期格式化为 YYYY-MM-DD 或 dd/MM/YYYY。我问的是 LocalDate 的文字格式。

我刚开始学习 Java,我正在使用这个 IDE 叫做 BlueJ。我想创建一个测试方法。

屏幕截图将显示我正在尝试做的事情

现在从构造函数中我们知道它需要一个 int、LocalDate 和一个 double。我在网上搜索了一下,发现

https://www.javabrahman.com/java-8/java-8-working-with-localdate-localtime-localdatetime-tutorial-with-examples/

java.time.LocalDate: A LocalDate instance holds a date without a time zone, in ISO-86011 calendar system. LocalDate has the default format ‘YYYY-MM-DD’ as in ‘2016-12-12’.

所以我会在 10001 中输入一个正常的数字作为 testID,double 应该是 50.5 我也知道要注册一个字符串(如果需要的话)我需要将它包含在 "string"

但是我已经尝试了各种方法来输入日期,但我会得到一个错误

2018-05-30,30-05-2018,30/05/2018 会给我

Error: incompatible types: Int cannot be converted to java.time.LocalDate

另一方面,“30/05/2018”会给我

Error: Incompatible types: java.lang.String cannot be converted to java.time.LocalDate

如果我尝试 2018 年 5 月 30 日,它会说

Error: ';' expected

如果我尝试“2018-05-30”,它会说

Error: unclosed character literal

我运行想出办法试试看。所以,如果你能告诉我应该如何把它放在那里,那就太好了。

我真的很想知道 BlueJ 希望我如何输入它。因为网上BlueJ的资源太少了


代码:

import java.time.LocalDate;
import java.util.ArrayList;
/**
 * Write a description of class TestPaper here.
 * 
 * @author (your name) 
 * @version (a version number or a date)
 */
public class TestPaper
{
    // instance variables - replace the example below with your own
    private int testID;
    private LocalDate testDate;
    private double testMarks;
    private ArrayList<MCQ> MCQDetails;

    /**
     * Constructor for objects of class TestPaper
     */
    public TestPaper(int testID, LocalDate testDate, double testMarks)
    {
        this.testID = testID;
        this.testDate = testDate;
        this.testMarks = testMarks;
        MCQDetails = new ArrayList<MCQ>() ; 
    }

/**
 * Accessor Method getTestID to get the testID
 *
 * @return int value of the choice ID
 */
public int getTestID(){
    return testID;
}

/**
 * Mutator Method to set the testID
 * 
 *  @param int format of the testID to set
 */
public void setTestID(int testID){
    this.testID = testID;
}

/**
 * Accessor Method getTestMarks to get the Test Marks
 *
 * @return double value of the test marks 
 */
public double getTestMarks(){
    return testMarks;
}

/**
 * Mutator Method to set the testMarks
 * 
 *  @param String format of the choice Description to be set
 */
public void setTestMarks(double testMarks){
    this.testMarks = testMarks;
}

    /**
 * Accessor Method getTestDate to get the testDate
 *
 * @return LocalDate value of the testDate
 */
public LocalDate getTestDate(){
    return testDate;
}

/**
 * Mutator Method to set the testDate
 * 
 *  @param LocalDate format of the testDate to set
 */
public void setTestDate(LocalDate testDate){
    this.testDate = testDate;
}

/**
 * Method addMCQ will allow users to add a MCQ Object to the list of MCQ
 *
 * @param addMCQ a MCQ Object
 * @return boolean will return true if it is successfully added or false if not
 */
public boolean addMCQ(MCQ MCQName)
{
    return MCQDetails.add(MCQName);
}

/**
 * Method removeMCQ to remove an MCQ object from the Arraylist
 *
 * @param MCQName A parameter of type MCQ 
 */
public void removeMCQ(MCQ MCQName)
{
    MCQDetails.remove(MCQName);
}

/**
 * Method listMCQ to return a list of MCQ arraylist
 *
 * @return The return value of MCQDetails (MCQ Arraylist)
 */
public ArrayList<MCQ> listMCQ()
{
    return MCQDetails;
}

    public MCQ findMCQ(int MCQID)
{
    for(MCQ m : MCQDetails)
    {
        if(m.getQuestionID() == MCQID)
        {
            return m;
        }
    }
    return null;
}

尝试转换调用中的LocalDate,例如:

TestPaper (2018-05-30, LocalDate.parse("2018/05/30"), 30/05/2018);

您可以使用 LocalDate 中的其他静态方法。有关更多示例,请参阅 here

根据您上面的评论,不要忘记您的导入:

import java.time.LocalDate;

包含包

如评论中所述,解决方案是添加创建 LocaDate 的代码,但 bluej 需要带有包前缀“java.time 的完全限定 class 名称。 ”:

java.time.LocalDate.of(2018, 5, 30)

不确定为什么仅 LocalDate.of(...)(即使导入了 class correclty)它不起作用,但至少这有效。


另一个细节:a date has no format。 类 和 LocalDate 一样只保存值(在本例中,它有年、月和日值),但日期本身根本没有格式。同一个日期可以用多种不同的格式表示:May 30th 20182018-05-3030/05/18是不同的格式,但都表示同一个日期。日期对象只保存值,您可以选择任何格式来表示它。

当您打印 LocalDate 时,它隐式调用 toString(),默认情况下选择 yyyy-MM-dd 格式,这是一种 ISO 8601 格式,但正如我所说,这只是格式化日期的众多可能方法之一(尽管值始终保持不变)。说 "a date has a format" 是错误和误导的。