如果两个进程都接收到对同一对象的引用,它们会在java中对其进行同步吗?
此问题起源于 BlackBerry java 世界,其中所有进程都位于同一 JVM 内,并且能够通过 GlobalEventListener 接口相互传递对象: http://www.blackberry.com/developers/docs/4.0.2api/net/rim/device/api/system/GlobalEventListener.html
因此,一个对象通过该接口传递,同步块会按预期运行吗? IE 只允许一个线程/进程进入?
This issue Originates in the BlackBerry java world, where all processes live inside the SAME JVM and are able to pass object around to each other via a GlobalEventListener Interface : http://www.blackberry.com/developers/docs/4.0.2api/net/rim/device/api/system/GlobalEventListener.html
So, an object pass over that interface, will a synchronized block behave as intended? IE only one thread/process is allowed in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它们是同一个 jvm 中的同一个对象实例,那么是的。
if they are the same object instance in the same jvm, then yes.