gpt4 book ai didi

java - 根据用户选择/输入从集合中过滤对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:06:36 26 4
gpt4 key购买 nike

我有一个相当简单的练习,但我的知识和使用设计模式(+ 单元测试)的要求有限。该项目的目标是创建一个控制台应用程序,允许您保存(添加)、打印(显示全部)、删除(按 cryteria 删除)和过滤(按条件显示)集合中的消息。

private String title;
private String author;
private String content;
private String creationDate;

我能够创建“添加”功能和“显示全部”。我的问题是过滤。我必须创建一个选项来根据用户给出的标准过滤保存的对象(所有可能的组合,如:按标题和创建日期过滤,按标题过滤等)。我考虑过使用如下开关和方法为用户提供从菜单中选择它的选项:

private final List<Message> storage = new ArrayList<Message>();

public List<Message> getAll() {
final ArrayList<Message> messages = new ArrayList<>();
messages.addAll(storage);
return messages;
}
List<Message> find(String author) {
return simpleStorage.getAll().stream()
.filter(item -> item.getAuthor() == author)
.collect(toList());
}

但我认为复制大量相似的代码不是一个好习惯。另外,我将来可能会发现这样的解决方案会令人厌烦甚至不可能(每个新参数都会添加新的组合)。有更好的方法吗?就像“一个接一个”地选择标准以便用户可以自己创建组合?我有一个提示,谓词可以帮助我解决这个问题,但我不知道该去哪里。

最佳答案

My problem is with the filtering. I must create an option to filter saved objects based on the criteria given by the user (all possible combinations like: filter by title and creationDate, filter by title etc.).

这是您可以尝试、使用或即兴发挥的东西。该代码是一个工作示例(使用 Java SE 8)。该示例具有 MessageFilter 类:

  • 创建测试消息的列表
  • 接受来自控制台的用户输入 - 消息字段及其值。例如,“标题”和“消息 1”。
  • 基于消息字段及其值从getPredicate 方法。
  • 谓词应用于消息并打印过滤结果。

该示例显示了分别按“标题”和“作者”过滤。我认为示例中的概念可以应用于其他过滤条件。

示例代码:

class Message { // represents a message

private String title;
private String author;

Message(String s1, String s2) {
title = s1;
author = s2;
}

String getTitle() {
return title;
}
String getAuthor() {
return author;
}

public String toString() {
return String.join(", ", "("+title, author+ ")");
}
}

public class MessageFilter {

public static void main(String [] args) {

// Create some messages

Message [] array = {new Message("msg1", "auth1"),
new Message("msg2", "auth2"),
new Message("msg3", "auth1"),
new Message("msg9", "auth3")
};
List<Message> messages = Arrays.asList(array);
System.out.println(messages);

// Accept user input: the field name and its value

Scanner scanner = new Scanner(System.in);

System.out.print("Enter the property to filter (title, author, etc): ");
String filterCriteria = scanner.nextLine();
System.out.print("Enter the property value: ");
String filterValue = scanner.nextLine();

// Get the predicate based on user input

Predicate<Message> predicate = getPredicate(filterCriteria, filterValue);

// Filter the data using the predicate got from user input, and print...

List<Message> result = messages.stream()
.filter(predicate)
.collect(Collectors.toList());

System.out.println("Result: " + result);
}

private static Predicate<Message> getPredicate(String criteria, String value) {

Predicate<Message> p = msg -> true; // by default returns all messages

switch(criteria) {
case "title":
p = msg -> msg.getTitle().equals(value);
break;
case "author":
p = msg -> msg.getAuthor().equals(value);
break;
}

return p;
}
}

关于java - 根据用户选择/输入从集合中过滤对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54137852/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com