package date;
import javax.swing.JOptionPane;
public class SpeedDatingTest {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String CDay = JOptionPane.showInputDialog("Enter the year: ");
int cDay = Integer.parseInt(CDay);
Date date = new Date(cDay);
System.out.println(date.discoverColumbusDay);
}
}
NetBeans告诉我"日期日期=新日期(cDay)"给我一个RuntimeException,我不知道为什么。有人可以帮忙吗?
答案 0 :(得分:0)
我没有看到您正在使用的Date类的导入。除非它与SpeedDatingTest位于同一个包中,否则可能是原因。
但是如果它在同一个包中,那么编译器找不到类,你应该确保它在类路径上。