Re: parallel for
- From: "Chris Uppal" <chris.uppal@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 16 Jan 2007 16:48:11 -0000
gaurav v bagga wrote:
if i have two arrays of same size and want to evaluate both of them in
parallel using
for(String s :<String array>){
}
how to do this
You can't. You'll have to use the "normal" looping syntax.
for (int i = 0; i < array1.length; i++)
{
String s1 = array1[i];
String s2 = array2[i].
....
}
-- chris
.
- References:
- parallel for
- From: gaurav v bagga
- parallel for
- Prev by Date: Re: How to check variables for uniqueness ?
- Next by Date: Re: How to check variables for uniqueness ?
- Previous by thread: Re: parallel for
- Next by thread: Re: parallel for
- Index(es):
Relevant Pages
|
|