gpt4 book ai didi

基于 Java 接口(interface)的多态性未被调用

转载 作者:行者123 更新时间:2023-11-30 03:32:41 25 4
gpt4 key购买 nike

我正在开发一个程序,该程序将命令作为字符串数据接收并将其传递给正确的处理程序,如 HashMap 所定义。

将命令传递给正确处理程序的代码如下:

//This is run in its own thread, hence the run() method
@Override
public void run() {
try {
//Socket is a Socket object containing the client's connection
InputStreamReader is = new InputStreamReader(socket.getInputStream());
//MAX_MESSAGE_SIZE is an integer, specifically 1024
char[] data = new char[MAX_MESSAGE_SIZE];
is.read(data, 0, MAX_MESSAGE_SIZE);
String strData = new String(data);
//Split on UNIX or Windows type newline
String[] lines = strData.split("\\r?\\n");
//First verb determines the command
String command = (lines[0].split(": "))[0];
//Re-add the ": " because the HashMap will look for it
if (handlerMap.containsKey((command + ": "))) {
System.err.println("Got command: " + command);
AbstractHandler handler = handlerMap.get(command);
System.err.println("Passing connection + data to handler...");
handler.handleData(socket, lines);
System.err.println("Handler is done!");
} else {
System.err.println("Didn't understand command: " + command);
DataOutputStream outputStream = new DataOutputStream(socket.getOutputStream());
outputStream.writeBytes(Protocol.UNKNOWN_ERROR);
outputStream.flush();
socket.close();
}
} catch (IOException e) {
System.err.println("Caught IOException: " + e.getMessage());
}
}

HashMap 的值部分是一个实现接口(interface) AbstractHandler 的对象。 AbstractHandler 定义了一种方法: handleData(Socket s, String[]lines) 。作为引用,这里是 map 的初始化位置:

     public RequestManager(Socket socket) {
this.socket = socket;
handlerMap = new HashMap<>();
handlerMap.put(Protocol.USERNAME, new AuthenticationHandler());
//Set arg to true b/c it is a set request, not a change request
handlerMap.put(Protocol.SET_PASSWORD, new ChangePasswordHandler(true));
handlerMap.put(Protocol.CHANGE_PASSWORD, new ChangePasswordHandler());
handlerMap.put(Protocol.FORGOT_PASSWORD, new ForgotPasswordHandler());
}

对象中的所有handleData方法仅包含以下代码:

@Override
public void handleData(Socket s, String[] lines) {
clientSocket = s; //clientSocket field in class
System.err.println("Made it into handler");
}

奇怪的是,在显示“将连接+数据传递给处理程序”后,没有任何反应。我没有看到任何有关进入处理程序的信息,也没有看到异常或处理程序已完成的消息。可能是什么原因造成的?

最佳答案

您测试一下处理程序是否存在

if (handlerMap.containsKey((command + ": "))) {

但是你尝试获取一个处理程序

AbstractHandler handler = handlerMap.get(command);

因此,如果 CommandName: 键存在,您可能无法使用 CommandName 键获取它。因此,在调用 handler.handleData(socket,lines); 时,您将遇到未经检查的 NullPointerException,并且您的 runnable 将惨死。

看起来您需要更改第一个或第二个。鉴于您说您会看到它打印“将连接+数据传递给处理程序...”,我认为您需要将其更改为:

AbstractHandler handler = handlerMap.get(command + ": ");

当你处理 map 时,稍微改变一下风格就可以避免这种情况在现在和将来对你造成影响。 Map.get returns null if the key is not found ,所以你可以这样做:

AbstractHandler handler = handlerMap.get(command + ": ");
if (handler != null) {
/* ... */
handler.handleData(socket, lines);
System.err.println("Handler is done!");
} else {
/* ... */
}

关于基于 Java 接口(interface)的多态性未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28651337/

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