Is Android garbage collector pausing other apps while running?

后端 未结 3 1699
醉话见心
醉话见心 2021-02-05 22:53

I\'ve found some information about the Android garbage collector that are contradictions to me.

Android Devevelopers Guide says:

Android 3.0 is th

3条回答
  •  爱一瞬间的悲伤
    2021-02-05 23:38

    It wouldn't pause other apps, it may pause your app. A mark and sweep doesn't have to stop all processing, its just the easiest way of doing it. It probably has some points where it pauses execution and other where it doesn't. THe only real way to tell would be to look at the Dalvik VM code. And I wouldn't count on it being the same answer in all versions of Android.

提交回复
热议问题