Android - 比较两个相等的 InetAddress 失败?

发布于 2024-12-12 13:36:56 字数 678 浏览 0 评论 0原文

我有一个应用程序,我现在正在为其开发多人游戏。然而,我没有两部手机,所以我一直在我的电脑上运行一个单独的程序(注意:不是模拟器!),它模拟我的程序和多人游戏方面。

但是在 PC 上我有以下代码:

Packet input = inputQueue.take();

                if (clientAddress == input.getAddress())
                {
                    switch (input.type)
                    {

这工作正常,Packet 只是我编写的一个简单的类,用于从数据报包中获取信息,而 getAddress() 返回一个 InetAddress。客户端地址已在代码中预先设置。

然而,Android 应用程序具有完全相同的代码,逐行完全相同,并且此 InetAddress 不会等于另一个?如果我使用 getHostName() 或其他方法获取 2 个 InetAddress 的字符串并进行比较,那么它确实等于另一个。

我是否做错了什么,并通过认为可以用 == 符号比较两个对象来假设某些事情?应该是 .equals() 吗?我以为 android 使用相同的 java.net 代码,但会有什么不同吗?

确保我使用 InetAddress 具有相同地址的最佳方法是什么?

I have an app that I am now developing multiplayer for. However I do not have 2 phones so I have been running a separate program on my pc (note: not the emulator!) which simulates my program and the multi-player aspects.

However on the PC I have the following code:

Packet input = inputQueue.take();

                if (clientAddress == input.getAddress())
                {
                    switch (input.type)
                    {

This works fine, Packet is simply a simple class I wrote to take info out of a Datagram packet and getAddress() returns an InetAddress. Client address is set previously in the code.

However the android app has exactly the same code, literally line for line exactly the same and this InetAddress will not equate to the other? If I take the String of the 2 InetAddress's using getHostName() or something and compare them then it DOES equal the other.

Am I doing something wrong and assuming something by thinking I can compare the two objects with an == sign? Should it be .equals() ? I thought android used the same java.net code but could there be a difference?

What IS the best way to ensure I have the same address using InetAddress's?

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

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

发布评论

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

评论(2

有深☉意 2024-12-19 13:36:56

它应该是equals()。在 Java 中,始终使用 equals 来比较对象。 == 运算符比较引用,而不是内容。

It should be equals(). In Java, always compare objects using equals. == operator compares references, not content.

慕巷 2024-12-19 13:36:56

不要使用 == 进行比较,它会检查相同的对象,而不是相同的内容。而是使用 .equals()

Don't compare using ==, it checks for identical objects, not identical contents. Instead use .equals().

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