gpt4 book ai didi

Java正确解析

转载 作者:行者123 更新时间:2023-11-30 06:34:17 24 4
gpt4 key购买 nike

我正在寻找将手写数据解析为对象的最佳方法。

假设我有一个名为 IEvent 的界面.

假设我有两个类(class) EventNewPlayerEventUpdateTime两者都实现了接口(interface) IEvent

类(class)EventNewPlayer需要 2 个整数和 1 个字符串。可以说位置XY以及玩家的名字

类(class)EventUpdateTime只需要一个参数:时间。

我想从手写文件中创建尽可能多的事件

该文件将如下所示:

NEWPLAYER, 4, 2, joe
NEWPLAYER, 8, 9, bob
UPDATETIME, 1
NEWPLAYER, 8, 9, carl
UPDATETIME, 3

我想从此文件生成事件列表。我还希望将来添加尽可能多的 Activity 。

最好/正确/可维护的方法是什么?

很抱歉出现任何英语错误,英语不是我的母语。

最佳答案

一种类似 OOP 的方法:

1) 创建一个名为 StringEventFactory 的基本接口(interface),以及一个名为 parseFromArray 的非静态函数,以字符串数组作为参数并返回 IEvent ;还创建一个名为 className 的静态函数,它返回每个事件类的文件内名称。

2) 为每个事件创建相应的 ...Factory继承自 StringEventFactory 的类,并实现parseFromArray函数从字符串数组数据创建该类型的事件。

3) 创建一个哈希表,其:

  • 键是存储在文本文件中的类名称,例如“新玩家”等
  • 值是对应的类 ..Factory对象

4) 对于每一行,将其拆分为字符串数组,并使用第一个元素来获取 StringEventFactory哈希表中的对象。将数组的其余部分传递给其 parseFromArray函数来创建你想要的事件对象

这样就可以很容易地添加新的类规范,而无需使用难看的 switch声明。

<小时/>

编辑:代码+规范略有变化

 interface StringEventFactory {
public static string className();
public IEvent parseFromArray(string[]);
};

class EventNewPlayerFactory implements StringEventFactory
{
public static string className() { return "NEWPLAYER"; }

public IEvent parseFromArray(string[] info)
{
if (info.length != 4) // includes the class name
return null;

// sanity check
if (!info[0].equals(className()) || info[3].isEmpty())
return null;

int x, y;
try {
x = Integer.parseInt(info[1]);
y = Integer.parseInt(info[2]);
}
catch (NumberFormatException ex) {
// notify?
return null;
}

return new EventNewPlayer(x, y, info[3]);
}
};

// similarly for EventUpdateTime ...

// main body
public static void main(string[] args)
{
Hashtable<string, StringEventFactory> factories = new Hashtable<string, StringEventFactory>();

factories.put(EventNewPlayerFactory.className(), new EventNewPlayerFactory());
// similarly for other classes

List<IEvent> eventList = new ArrayList();

// file parsing
FileReader input = new FileReader(fileName);
BufferedReader read = new BufferedReader(input);
String line = null;

while ((line = read.readLine()) != null)
{
String[] array = line.split(",");
for (int i = 0; i < array.length; i++)
array[i] = array[i].trim();

// fetch the factory class
StringEventFactory fact = factories.get(array[0]);
if (fact == null) {
// class name does not exist
continue;
}

StringEvent out = fact.parseFromArray(array);
if (out == null) {
// parameters were incorrect!
continue;
}

// success! add to list
eventList.add(out);
}
}

抱歉,如果它不能直接使用并且存在语法错误,我的 Java 有点生疏,但希望其要点正是您想要的。

关于Java正确解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45469911/

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