我没有尝试在YYYY-MM-DD或dd / MM / YYYY格式化日期。我问的是LocalDate的文字格式。
我刚开始学习Java,我正在使用名为BlueJ的IDE。我想创建一个测试方法。
现在,从构造函数开始,我们知道它需要一个int,LocalDate和一个double。我在网上搜索过,发现
java.time.LocalDate:LocalDate实例保存没有时间的日期 区域,在ISO-86011日历系统中。 LocalDate具有默认格式 'YYYY-MM-DD'如'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
如果我尝试30.05.2018就会说
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;
}
答案 0 :(得分:0)
尝试在通话中转换LocalDate,例如:
TestPaper (2018-05-30, LocalDate.parse("2018/05/30"), 30/05/2018);
您可以使用LocalDate中的其他静态方法。有关更多示例,请参阅here。
从上面的评论中,不要忘记导入:
import java.time.LocalDate;
答案 1 :(得分:0)
正如评论中所讨论的,解决方案是添加创建LocaDate
的代码,但bluej需要包含前缀“java.time。”的完全限定类名:
java.time.LocalDate.of(2018, 5, 30)
不确定为什么它只适用于LocalDate.of(...)
(即使已导入类correclty),但至少可行。
另一个细节:a date has no format。类似LocalDate
的类只保存值(在这种情况下,它具有年,月和日值),但日期本身根本没有格式。同一日期可以用多种不同的格式表示:May 30th 2018
,2018-05-30
,30/05/18
是不同的格式,但都代表相同的日期。日期对象只保存值,您可以选择要表示它的任何格式。
当您打印LocalDate
时,隐含式调用toString()
,默认情况下会选择yyyy-MM-dd
格式,这是ISO 8601格式,但正如我所说,这只是格式化日期的许多可能方法之一(尽管值始终保持不变)。告诉我“日期有格式”是错误的和误导性的。