【问题标题】:How can i use enums to set priority in an arraylist?如何使用枚举在数组列表中设置优先级?
【发布时间】: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 但我必须在我的代码中使用枚举。

标签: java arraylist enums


【解决方案1】:

你得到的编译错误,这是因为类的右括号不正确。删除printAll 方法后的右括号,并在deleteToDoItem 方法后添加它。这将解决您的编译问题。

最后一段代码,应该是这样的:

  private static void printAll() {
    for (int index = 0; index < toDoItems.size(); index++)
      System.out.println(toDoItems.get(index));
  }

// Extra bracket is removed from here.

  public static void deleteToDoItem() {
    System.out.print("Enter index of item to delete: ");
    int delete = k.nextInt();
    toDoItems.remove(i);
  }
} // put it here.

变量ideleteToDoItem方法中也是未定义的。

您可以定义Priority enum。利用getValue() 方法获取Priorityint 值。

enum Priority {
  HIGH(1), LOW(3), MEDIUM(2);
  private int value;
  Priority (int value) {
    this.value = value;
  }
  public int getValue() {
    return value;
  }
}

ToDoItem 类将如下所示:

注意:它将期望优先级为String,如(highlowmedium)而不是整数。现在类的所有成员都是实例变量而不是类变量。它们现在属于 ToDoItem 类的单个对象。

public class ToDoItem {

  private  String description;
  private  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 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 类中进行这种整数转换,将Priority 输入为(highlowmedium),并将其直接传递给ToDoItem 类构造函数。

int p = Integer.parseInt(prior);  // not required.

要以排序方式打印数据,您需要实现自定义Comparator。这是使用基于ToDoItem 对象的Priority 的自定义Comparator 的代码。

public static void printAll() {
  Collections.sort(toDoItems, new Comparator<ToDoItem>() {
    @Override
    public int compare(ToDoItem o1, ToDoItem o2) {
      return o1.getPriority().getValue() - o2.getPriority().getValue();
    }
  });
  //System.out.print(toDoItems.size() + ". ");
  for (int index = 0; index < toDoItems.size(); index++)
    System.out.println(index + ". " + toDoItems.get(index));
}

同时让 getter 进入 ToDoItem 类的 Priority

public Priority getPriority() {
  return priority;
}

【讨论】:

  • 但是我仍然不知道如何获得优先级枚举
  • @pyuntae 我已经为您的代码添加了一些修复。做检查。
  • 知道了。如何获得优先级以打印出数字而不是单词 LOW/HIGH/MEDIUM 我希望它根据已设置的优先级和数组索引以根据优先级移动的数字打印出来
  • 不确定是不是因为我将枚举代码放在 ToDoItem 类中,但它一直给我一个错误,他们找不到值的符号
  • @pyuntae 将Priority 枚举代码保留在ToDoItem 类之外。我没有收到任何错误。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2013-05-06
  • 2021-03-18
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多