Dalvik VM & Java Memory Model (Concurrent programming on Android)

前端 未结 4 1996
名媛妹妹
名媛妹妹 2021-01-30 07:04

I am working on Android projects which involve the lot of concurrent programming and I am going to implement some custom inter-threads communication stuff (the one from

4条回答
  •  执念已碎
    2021-01-30 07:22

    Here's the honest answer. If java.util.concurrent is not up to task for your implementation then your problem isn't java.util.concurrent but is instead your original design specifications. Revisit your design, maybe post here what in your design makes using simple mutex's not up to task for you and then the community can show you how to design it better.

提交回复
热议问题