扩展 oscP5 处理库中的 TcpClient 类

发布于 2024-10-31 03:32:03 字数 601 浏览 2 评论 0原文

我正在尝试扩展 oscP5 库中的 TcpClient 类进行处理。我已经在我的主草图中导入了 netP5.* 和 oscP5.* 。但是,以下代码会产生此错误:期望 TRIPLE_DOT,找到“,”。我的扩展方式有什么问题吗?我应该在构造函数中添加所有这些参数吗?

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.");
}

}

感谢您的帮助。

I am trying to extend the TcpClient class in the oscP5 library for Processing. I have already imported netP5.* and oscP5.* in my main sketch. However, the following code produces this error: expecting TRIPLE_DOT, found ','. What is wrong with how I extended it? Am I supposed to add all of those arguments in the constructor?

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.");
}

}

Thanks for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜夜流光相皎洁 2024-11-07 03:32:03

请看看你的例子:

公共 TcpClient(对象 theObject,
字符串,地址,int 端口){

StringtheAddress 之间有一个逗号,该逗号不属于那里。

please look at your example:

public TcpClient(Object theObject,
String, theAddress, int thePort) {

you have a comma between String and theAddress which doesn't belong there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文