- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我会尽可能简明扼要,但这是一个复杂的问题。我正在 Linux 平台上用 Java 编写,无论它值多少钱。
目标的简短版本:我想要一个名为 Client
的抽象类,它充当客户端连接的通用容器。 Client
应该线程化它的每个连接。我也有一些半测试代码,以类似的编码方式播放与此对应的服务器。抽象的 Client
应该被实现为更具体和可实例化的东西。在我的例子中,我有一个名为 FileClientGui
的类,它扩展了 Client
并用接收从服务器获取文件的内容并显示它们。由于抽象的 Client
本身是 java.lang.Thread
的扩展,这一点变得更加复杂。
所以这是我的通用术语的文件结构:
/class/path/lib/client/Client.java
/class/path/com/fileclient/FileClientGui.java
这两个文件都引用了其他几个自定义类,但我没有从中发现任何错误。如果我需要发布这些项目的代码,请告诉我,我会发布它们。
因此,我在终端上运行了这条长长的 javac 命令,设置了类路径和构建目录以及所有需要编译的相关文件。我收到的任何该代码的唯一错误是:
com/fileclient/FileClientGui.java:26: com.fileclient.FileClientGui is not abstract and does not override abstract method cleanClients() in lib.client.Client
我的代码(见下文)清楚地实现了 Client.java 中定义的方法和所有其他抽象方法。我搜索了 Internet,似乎大多数遇到此错误的人都在尝试执行类似 ActionListener
的操作,并对该实现感到困惑,很多时候,这只是一个简单的拼写或大写问题.我一遍又一遍地检查我的代码,以确保这不是一个像那样简单的“糟糕”问题。我怀疑这实际上是我的类的名称与其他类的名称之间的某种冲突,以某种方式最终出现在我的类路径或 Java 的 native 框架/库中,但我找不到任何明显的东西。
无论如何,这是我的代码。
客户端.java:
package lib.client;
import lib.clientservercore.Connection;
import lib.simplefileaccess.Logger;
import java.io.IOException;
import java.net.Socket;
import java.util.ArrayList;
import java.lang.Thread;
/**
*
* @author Ryan Jung
*/
public abstract class Client extends Thread {
ArrayList<Connection> connections;
boolean isRunning;
Logger log;
public Client (String logFile) {
log = new Logger(logFile);
log.write("Initializing client...");
connections = new ArrayList<Connection>(50);
log.write("Client initialized.");
}
public void logOut(String contents) {
log.write(contents);
}
public Logger getLogger() {
return this.log;
}
public ArrayList<Connection> getConnections() {
return connections;
}
public void addConnection(Connection c) {
connections.add(c);
}
public void removeConnection(Connection c) {
connections.remove(c);
}
public boolean getIsRunning() {
return isRunning;
}
public void setIsRunning(boolean r) {
isRunning = r;
}
public Connection connect(String host, int port) {
log.write("Creating new connection...");
Socket s;
Connection c = null;
// Validate port
if (port <= 1024 || port > 65536) {
log.write("Invalid server port: " + port + ". Using 12321.");
port = 12321;
}
try {
s = new Socket(host, port);
c = connectClient(s);
} catch (IOException exIo) {
log.write("Could not connect to the server at " + host + ":" + port + ". Exception: " + exIo.getMessage());
exIo.printStackTrace();
}
log.write("Connected client to " + host + ":" + port);
return c;
}
@Override
public void run() {
log.write("Running client.");
runClient();
log.write("Client finished running.");
}
abstract Connection connectClient(Socket sock);
abstract void runClient();
abstract void cleanClients();
}
FileClientGui.java:
package com.fileclient;
import lib.client.Client;
import lib.clientservercore.Connection;
import lib.clientservercore.Connection.ConnectionStatus;
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.io.IOException;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Iterator;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.JTextField;
import java.lang.Thread;
/**
*
* @author Ryan Jung
*/
public class FileClientGui extends Client {
JFrame frmMain;
JPanel pnlMain;
JPanel pnlConnect;
JTabbedPane tabConnections;
JLabel lblHost;
JLabel lblPort;
JTextField txtHost;
JTextField txtPort;
JButton btnConnect;
public FileClientGui(String logFile) {
super(logFile);
logOut("Initializing client controller...");
frmMain = new JFrame("Client");
pnlMain = new JPanel(new BorderLayout());
pnlConnect = new JPanel(new FlowLayout());
tabConnections = new JTabbedPane();
lblHost = new JLabel("Host:");
lblPort = new JLabel("Port:");
txtHost = new JTextField("localhost", 10);
txtPort = new JTextField("12321", 5);
btnConnect = new JButton("Connect");
frmMain.setSize(450, 600);
frmMain.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frmMain.add(pnlMain);
pnlMain.add(pnlConnect, BorderLayout.NORTH);
pnlMain.add(tabConnections, BorderLayout.CENTER);
pnlConnect.add(lblHost);
pnlConnect.add(txtHost);
pnlConnect.add(lblPort);
pnlConnect.add(txtPort);
pnlConnect.add(btnConnect);
btnConnect.addActionListener(
new ActionListener() {
public void actionPerformed(ActionEvent e) {
String host = txtHost.getText();
int port = Integer.parseInt(txtPort.getText());
try {
Socket sock = new Socket(host, port);
FileClientConnectionGui c = (FileClientConnectionGui)(connectClient(sock));
tabConnections.addTab(c.getInetAddress().toString(), c.getMainPanel());
} catch (UnknownHostException ex) {
logOut("Can't find host: " + host + ". Exception: " + ex.getMessage());
ex.printStackTrace();
} catch (IOException ex) {
logOut("Exception: " + ex.getMessage());
ex.printStackTrace();
}
}
}
);
frmMain.setVisible(true);
logOut("Client controller initialized.");
}
public void removeConnection(FileClientConnectionGui c) {
logOut("Removing connection: " + c.getInetAddress().toString());
tabConnections.remove(c.getMainPanel());
logOut("Removed connection.");
}
Connection connectClient(Socket sock) {
logOut("Client controller is creating a new connection...");
FileClientConnectionGui c = new FileClientConnectionGui(sock, getLogger(), this);
addConnection(c);
c.start();
logOut("Client controller created a new connection.");
return c;
}
void runClient() {
setIsRunning(true);
logOut("Client controller is running.");
while (getIsRunning()) {
cleanClients();
try {
sleep(500);
} catch (InterruptedException ex) {
logOut("Sleep interrupted. Exception: " + ex.getMessage());
ex.printStackTrace();
}
}
logOut("Client controller stopped running.");
}
void cleanClients() {
Iterator i = getConnections().iterator();
try {
while (i.hasNext()) {
FileClientConnectionGui c = (FileClientConnectionGui)(i.next());
if (c.getStatus() == ConnectionStatus.CLOSED) {
logOut("Removing dead client at " + c.getInetAddress().toString());
tabConnections.remove(c.getMainPanel());
removeConnection(c);
}
}
} catch (Exception ex) {
logOut("cleanClients Exception: " + ex.getMessage());
}
}
}
我会竭尽所能,并提前感谢您提供的任何建议。我对此感到非常困惑。
也许最令人困惑的是(也许这提供了问题的线索?)是我可以注释掉抽象方法的其他实现(例如 runClient 或 connectClient),而且我没有遇到其他问题,只是同一个。此外,如果我将 @Override 指令添加到其他指令之一,如下所示:
@Override
Connection connectClient(Socket sock) {
logOut("Client controller is creating a new connection...");
FileClientConnectionGui c = new FileClientConnectionGui(sock, getLogger(), this);
addConnection(c);
c.start();
logOut("Client controller created a new connection.");
return c;
}
我收到一个额外的错误:
com/fileclient/FileClientGui.java:96: method does not override or implement a method from a supertype
它显然正在覆盖其父类(super class)型(即Client)的方法。我已经尝试用完整的类路径 (lib.client.Client) 替换“Client”,但所有错误都没有改变。
有什么我想念的吗?我没有尝试的东西?
最佳答案
我相信这是因为您拥有包级抽象方法,这些方法在您的子类中是不可见的。尝试让它们受到保护。
这里有一对简单的重现问题的类:
package x1;
public abstract class P1
{
abstract void foo();
}
然后:
package x2;
public class P2 extends x1.P1
{
void foo() {}
}
编译它们给出:
P2.java:3: P2 is not abstract and does not override abstract method foo() in P1
public class P2 extends x1.P1
^
1 error
使 foo
在两个类中都受到保护可以解决这个问题。
关于javac 声称我没有覆盖抽象类实现中的方法,而我显然是,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3200174/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!