我在处理中使用 oscP5 库。我已经查看了 oscP5 的 javadoc 并浏览了源代码,但我无法弄清楚。
当我得到这样的调试信息时: ### new Client @ netP5.TcpClient@2515
值2515代表什么?我知道这不是客户端使用的端口。它是客户的唯一ID吗?它是我可以在 TcpClient 类中访问的变量吗?
谢谢。
我在处理中使用 oscP5 库。我已经查看了 oscP5 的 javadoc 并浏览了源代码,但我无法弄清楚。
当我得到这样的调试信息时: ### new Client @ netP5.TcpClient@2515
值2515代表什么?我知道这不是客户端使用的端口。它是客户的唯一ID吗?它是我可以在 TcpClient 类中访问的变量吗?
谢谢。
它是内存中的对象(TcpClient)地址。您可以在 src/netP5/AbstractTcpServer.java 找到源代码
TcpClient t = new TcpClient(this, _myServerSocket.accept(),
_myTcpPacketListener, _myPort, _myMode);
if (NetP5.DEBUG) {
System.out.println("### new Client @ " + t);
}
这意味着,您的号码是 TcpClient 的字符串表示形式。由于没有实现任何返回 this - 它的默认行为:对象地址。您可以访问此 TcpClient 对象及其成员,如下例所示。为了简单起见,我在这里假设我们查看客户端列表中的第一个对象。
if (oscP5tcpServer.tcpServer().getClients().length>0) {
TcpClient tcpClient = (TcpClient)oscP5tcpServer.tcpServer().getClient(0);
print (tcpClient); // address - same as your printed output
print (tcpClient.netAddress()); // string with "ip:port"
print (tcpClient.socket()); // Socket object
}
请注意,大多数有趣的信息都包含在基础对象 AbstractTcpClient 中(如示例中所示)。