Contents

Develop
2021.09.14 06:05

[swift] 실행시간 측정하기

Views 3018 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

start, end 구해서 end-start


func evaluateProblem(problemNumber: Int, problemBlock: () -> Int) -> Answer

{

    print("Evaluating problem \(problemNumber)")

 

    let start = DispatchTime.now() // <<<<< Start time

    let myGuess = problemBlock()

    let end = DispatchTime.now()   // <<<<< End time

 

    let theAnswer = self.checkAnswer(answerNum: "\(problemNumber)", guess: myGuess)

 

    let nanoTime = end.uptimeNanoseconds - start.uptimeNanoseconds // <<<<< Difference in nano seconds (UInt64)

    let timeInterval = Double(nanoTime) / 1_000_000_000 // Technically could overflow for long running test

 

    print("Time to evaluate problem \(problemNumber): \(timeInterval) seconds")

    return theAnswer

}


출처: https://stackoverflow.com/questions/24755558/measure-elapsed-time-in-swift





?

List of Articles
No. Category Subject Author Date Views
1045 Develop [ios] FlckrFeed Example App (Swift) file hooni 2016.11.27 7495
1044 Develop [android] 딜레이를 구현하기 위한 꼼수 hooni 2016.11.24 4445
1043 Develop [android] How can I place app icon on launcher home screen? hooni 2016.11.15 6360
1042 Develop [android] Calling activity function from separate class hooni 2016.11.15 7412
1041 PPT [ppt] 보안경제학 발표자료 secret hooni 2016.11.11 5
1040 Develop [Android Error] The number of method references in a .dex file cannot exceed 64K hooni 2016.11.10 5480
1039 Develop [android] 레이아웃 사이즈 변경 (동적; programmatically) hooni 2016.11.07 2779
1038 Develop [android] 초간단 얼럿 (AlertDialog) hooni 2016.10.21 5444
1037 Develop [android] dp, px 서로 변환 hooni 2016.10.21 7603
1036 Develop [matlab] ZigZag-Scanning (2-D Array) file hooni 2016.10.15 4760
1035 System/OS [mac] OS X 엘 캐피탄에서 Soudflower 사용하기 2 file hooni 2016.10.03 5930
1034 System/OS [mac] Mac OS에서 재생되는 사운드를 녹음하는 방법 file hooni 2016.10.03 6141
Board Pagination Prev 1 ... 7 8 9 10 11 12 13 14 15 16 ... 99 Next
/ 99