黑莓信号量类
我似乎在 Blackberry Java Reference 中找不到任何与信号量等效的东西。我缺少什么? java.util.concurrent 甚至不存在。
谢谢!肖恩
I can't seem to find anything equivalent to a Semaphore in the Blackberry Java Reference. What am I missing? java.util.concurrent isn't even there.
Thanks! Sean
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 Eric Giguere 的 在 J2ME 应用程序中使用线程:
From Using Threads in J2ME Applications by Eric Giguere :
因此,对于遇到此问题的任何人,coldice 的出色回答将我带到此页面,该页面解释了如何使用 J2ME 中提供的等待/通知原语来实现各种类型的信号量 http://tutorials.jenkov.com/java-concurrency/semaphores.html。谢谢!
So for anyone who comes across this, coldice' excellent answer lead me to this page, which explains how to implement various types of Semaphores using the wait/notify primitives available in J2ME http://tutorials.jenkov.com/java-concurrency/semaphores.html. Thanks!