同じ構造の関数がいくつかあります(簡略化):
func moveFiles()
local $error = 1
For $i = 1 to 100
updateProgress($i)
updateStatus("Processing " & $i & "/100 files")
$error *= moveFile($i)
Next
Return $error
endFunc
これを次のようなジェネリック関数にしたいと思います。
func doSomething($function)
local $error = 1
For $i = 1 to 100
updateProgress($i)
updateStatus("Processing " & $i & "/100 files")
$error *= $function($i) ;execute the function that was passed
Next
Return $error
endFunc
だから私はこのようにすることができます:
doSomething($moveFiles)
doSomething($compareFiles)
doSomething($removeFiles)
...
これはAutoItv3で可能ですか?どうすればできますか?