【发布时间】:2023-03-18 12:50:02
【问题描述】:
我正在编写一个使用两个类的程序。我必须提示用户将项目添加为字符串,将优先级设置为低/高/中,并获取日期。所有这些都是存储在名为 toDoItems 的 ArrayList 中的 ToDoItem 对象。根据用户输入的优先级,每个包含项目、优先级和日期的 ToDoItem 对象都应该自行排序。
例如:
Add item: Run
Set due date: 11/27/2015
Enter priority: High
Print All items:
0. Run -1- (11/27/1993)
Add item: Jump
Set due date: 11/28/1993
Enter priority: Low
Print All items:
0. Run -1- (11/27/1993)
1. Jump -2- (11/27/1993)
Add item: Walk
Set due date: 11/19/1993
Enter priority: Medium
Print All items:
0. Run -1- (11/27/1993)
1. Walk -2- (11/19/1993)
2. Jump -3- (11/27/1993)
在某些时候,我必须能够根据我写的索引从 arrayList 中删除一个 ToDoItem 对象:
public static void deleteToDoItem() {
System.out.print("Enter index of item to delete: ");
int delete = k.nextInt();
toDoItems.remove(i);
}
这给了我一个错误
----jGRASP exec: javac -g MyList.java
MyList.java:75: error: class, interface, or enum expected
public static void deleteToDoItem() {
^
MyList.java:83: error: class, interface, or enum expected
int delete = k.nextInt();
^
MyList.java:84: error: class, interface, or enum expected
toDoItems.remove(i);
^
MyList.java:85: error: class, interface, or enum expected
}
^
4 errors
----jGRASP wedge2: exit code for process is 1.
----jGRASP: operation complete.
我把所有的对象都搞定了,我的两个类都在工作,但我一直纠结于如何编写我的优先级枚举。我知道在某些时候我必须:
编写一个表示优先级高、中、低的枚举类型。
更改此对象的优先级字段以使用此新定义的枚举类型。
& 编写一个现在只接受新定义的枚举类型的方法。
UPDATE //共享完整代码 ToDoItem 类:
import java.text.*;
import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.*;
public class ToDoItem {
private String description;
private static Date dueDate;
private Priority priority;
private static DateFormat df = new SimpleDateFormat("MM/dd/yyyy");
public ToDoItem() {
}
public ToDoItem(String desc) {
description = desc;
dueDate = null;
priority = priority.HIGH;
}
public ToDoItem(String desccription, String d) throws ParseException{
this.description = description;
dueDate = df.parse(d);
}
public ToDoItem(String description, String p, String d) throws ParseException{
this.description = description;
this.priority = Priority.valueOf(p.toUpperCase());
dueDate = df.parse(d);
}
public String toString() {
return description + " -"+priority+"- " + df.format(dueDate);
}
public static void setDueDate(String s) {
try {
dueDate = df.parse(s);
} catch(Exception ex) {
System.out.println(ex);
}
}
public String getDescription() {
return description;
}
public String getDueDate() {
return df.format(dueDate);
}
}
MyList 类:
import java.util.Scanner;
import java.util.ArrayList;
import java.io.*;
import java.text.*;
public class MyList {
public static ArrayList<ToDoItem> toDoItems = new ArrayList<>();
private static Scanner k = new Scanner(System.in);
public static void main(String[] args) throws ParseException {
while(true) {
printMenu();
processInput();
}
}
public static void printMenu() {
System.out.println("[a]dd an item");
System.out.println("[d]elete an item");
System.out.println("[t]oggle complete");
System.out.println("[p]rint all");
System.out.println("[q]uit");
}
private static void processInput() throws ParseException {
Scanner s = new Scanner(System.in);
String input = s.next();
if(input.equals("a")) {
addToDoItem();
}
else if(input.equals("d")) {
deleteToDoItem();
}
else if(input.equals("t")) {
// toggleComplete();
}
else if(input.equals("p")) {
printAll();
}
else if(input.equals("q")) {
System.exit(0);
}
}
private static void addToDoItem() throws ParseException {
System.out.print("Enter an item to add to list: ");
String desc = k.nextLine();
System.out.print("Enter Date (MM/dd/YYYY): ");
String dueDate = k.nextLine();
ToDoItem.setDueDate(dueDate);
System.out.print("Enter priority (Low/Medium/High): ");
String prior = k.nextLine();
//int p = Integer.parseInt(prior);
toDoItems.add(new ToDoItem(desc, prior, dueDate));
}
public static void printAll() {
//System.out.print(toDoItems.size() + ". ");
for (int index = 0; index < toDoItems.size(); index++)
System.out.println(index + ". " + toDoItems.get(index));
}
public static void deleteToDoItem() {
int index = 0;
System.out.print("Enter index of item to delete: ");
int delete = k.nextInt();
toDoItems.remove(index);
}
// public static void toggleComplete() {
/////
// }
}
【问题讨论】:
-
分享你的完整代码?
-
您可以为您的列表实现一个比较器并相应地对其进行排序。在这里查看:tutorials.jenkov.com/java-collections/sorting.html
-
@Soorapadman 我已经在上面发帖了
-
您绝对应该阅读有关静态的内容。您所有的 TodoItem 实例共享相同的描述、dueDate 和优先级。
-
@JorgeCampos 但我必须在我的代码中使用枚举。