which task / program will consume lot of memory space of android device? -
i want use memory or stress memory, @ peak capability consuming of ram space. came tasks parallelly searching text in many files, calling functions recursively fill stack space.
searching not fill memory on own. fill heap need hold many or large objects in memory.
for example:
list<string> mlist = new arraylist<string>(); (int = 0; < 999999; i++) { mlist.add("garbage"); }
Comments
Post a Comment