我正在尝试扩展oscP5库中的 TcpClient 类进行处理。我已经在我的主草图中导入了 netP5.* 和 oscP5.*。但是,以下代码会产生此错误: expecting TRIPLE_DOT, found ','。我如何扩展它有什么问题?我应该在构造函数中添加所有这些参数吗?
class GameClient extends netP5.TcpClient {
int score;
//some more variables
public TcpClient(Object theObject, String, theAddress, int thePort) {
//This is the constructor.
}
//I want to override this function
public void dispose() {
println("dispose() called.");
}
}
谢谢你的帮助。