哪种表现更有效?
使用Java:
mkdir destDirPath
move srcDirPath/* destDirPath
或DOS移动命令:
func getNextQuestion() -> (Int) -> QuizQuestion!
{
func incrementor(var index:Int) -> QuizQuestion! {
if index < questions.count && index >= 0 {
return questions[index]
}
else {
return nil
}
}
return incrementor
}
通过我的测试,我发现DOS命令明显更快,但我想确认该评估是否总是正确,为什么会这样?任何其他考虑/参数可能会影响它吗?