Contents

Develop
2021.09.14 06:05

[swift] 실행시간 측정하기

Views 842 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
21 System/OS HTTP 프로토콜 (브라우저와 웹서버 간의 통신) hooni 2003.04.23 48355
20 Develop How to Test SMTP AUTH using Telnet hooni 2018.04.05 1589
19 System/OS How to Setup an Email Server on CentOS 7 hooni 2018.04.05 3034
18 System/OS How to Install and Use wget on Mac file hooni 2020.09.03 1538
17 Etc How to completely Uninstall Coda hooni 2017.10.24 2546
16 Etc GSM에서 음성이 실리는 과정 요약.. hooni 2013.04.23 17587
15 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 1265
14 Develop git 브런치 배우기 (링크) hooni 2013.07.09 20701
13 Develop GCM 사용하기 3 (JSP로 GCM 푸시 서버 만들기) 4 file hooni 2013.07.06 25425
12 Develop GCM 사용하기 2 (단말에 GCM 구현하기) file hooni 2013.07.06 23411
11 System/OS Enable the Develop Menu in Safari file hooni 2017.02.07 1336
10 System/OS Enable Safari Hidden Debug Menu in Mac OS X file hooni 2017.02.07 1730
Board Pagination Prev 1 ... 89 90 91 92 93 94 95 96 97 98 Next
/ 98