I have an application that has a Service uses a ArrayList to store in the background for a very long time, the variable is initialized when the service started. The service is in the background and there will be frequent access to the variable (that's why i don't want to use file management or settings since it will be very expensive for a file I/O for the sake of battery life). The variable will likely to be ~1MB->2MB over its life time. Is it safe to say that it will never be nulled by GC or the system or is there any way to prevent it? Thanks.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

I have an application that has a Service uses a ArrayList to store in the background for a very long time

If "a very long time" is greater than "a handful of seconds, or as long as the user explicitly asks for it to be running", then we have problems.

Simply put, your service will not live "for a very long time". The user will kill it off with a task killer, or the user will kill it off with Settings application, or Android will kill it off due to excessive age. Too many developers are leaking services, causing degradations in device performance.

Very few services truly need to be running except for brief periods of time (e.g., while downloading a large file) or at user request (e.g., music player).

Is it safe to say that it will never be nulled by GC or the system or is there any way to prevent it?

It will live as long as the process lives. The process will live until you stop the service (assuming there are no other components running), or until the user reboots their phone, or until any of the scenarios outlined earlier (e.g., task killer) occurs.

link|improve this answer
Thank you. That is what I was looking for. :) – Edison Mar 15 '11 at 2:08
feedback

(It is safe to assume the variable "will never be nulled by the GC or the system" as long as the variable can be accessed in your code. This may be a good thing or a bad thing, depending.)

The "lifetime" of a static variable is that of the class -- "always and forever" while that class is loaded -- and the scope is any code that can access said stable identifier (e.g. that which is allowed via the visibility modifiers, although reflection could also be considered.)

However, variables are not GC'ed: objects are. So explicitly/manually setting the variable to "null" or a "dummy object" when it's not being used may -- if there are no other references to the object that the variable used to refer to -- make said object eligible for reclamation.

However, it is best to avoid static values, if at all possible as this can also help with implicit object lifetime control.

Happy coding.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.