If statements inside or outside loops?

前端 未结 6 886
醉梦人生
醉梦人生 2021-02-07 17:32

Is it better if I do this:

foreach my $item ( @array ) {
   if ( $bool ) {
     .. code ..
   }
   else {
     .. code ..
   }
}

or

<         


        
6条回答
  •  -上瘾入骨i
    2021-02-07 18:30

    I suggest you time both and see for yourself, but I don't expect the difference to be huge.

提交回复
热议问题