如何唤醒“等待”线?

发布于 2024-12-11 15:59:47 字数 143 浏览 0 评论 0原文

我正在制作一个应用程序,旨在模拟数据包如何通过互联网传输,因此一些数据包会丢失。

主线程等待响应,但是必须有一个超时。

我想要一个在线程中运行的计时器,如果计时器超时,它会中断主线程。我想知道是否可以让两个进程同时运行,即不让一个进程休眠。

I am making an app that is intended to emulate how packets are transmitted over the internet, and so some packets get lost.

The main thread waits for the response, however there has to be a timeout.

I want to have have a timer running in a thread, which interrupts the main thread if the timer times out. I am wondering if you can have both processes running concurrently, i.e. without making one sleep.

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

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

发布评论

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

评论(1

非要怀念 2024-12-18 15:59:47

java中存在线程的根本原因是它们可以并行运行。是的,两个线程可以并行运行。对于您的程序,它们是并行运行的。对于 CPU,它们可能会也可能不会,具体取决于您拥有的内核数量。

The very reason for threads to exist in java is so that they can run in parallel. Yes, two threads can run in parallel. For your program they are running in parallel. for CPU they may or may not depending on number of Cores you have.

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