Hi

I want to do the following:

int i, j=0, n[500];
for(i =  0 ; i< 400; i++)
{
Thread t = new Thread();
t.start();
}

                Runnable runnable = new Runnable() {

                    public void run() {
a[j++]=HeavyOpetation();
// here it will do a heavy operation.
                    }
                };

is here android start a parallel thread pool?

I want the array n[] will fill by parellal operation.

is it possible in android?

Regards
Goutom

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to