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

Popular posts from this blog

mongodb - Struggling to get ordered results from the last retrieved article, given array of elements to search in -

c# - Pausing a storyboard on TabItem mouse over -

c# - Attribute value in root node of xml Linq to XML -