码迷,mamicode.com
首页 > 其他好文 > 详细

加速数组操作(Array)

时间:2014-07-01 17:39:14      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:blog   http   strong   2014   cti   for   

Measure-Command {
  $ar = @()
  for ($x=0; $x -lt 10000; $x++)
  {
    $ar += $x  
  }
}
执行结果:3.301s


Measure-Command {
  $ar = New-Object -TypeName System.Collections.ArrayList
  for ($x=0; $x -lt 10000; $x++)
  {
    $ar.Add($x)
  }
}
执行结果:0.047s

From:http://powershell.com/cs/blogs/tips/archive/2014/06/23/speeding-up-arrays.aspx

加速数组操作(Array),布布扣,bubuko.com

加速数组操作(Array)

标签:blog   http   strong   2014   cti   for   

原文地址:http://www.cnblogs.com/dreamer-fish/p/3817813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!