프로그램 실행 시간 코드 보기
I was asked three times last week how I find how long an activity takes on the Mac and the iPhone. Here is the most accurate method that I know of:
#import
uint64_t start = mach_absolute_time();
// do stuff to be timed
uint64_t end = mach_absolute_time();
uint64_t elapsed = end - start;
mach_timebase_info_data_t info;
if (mach_timebase_info (&info) != KERN_SUCCESS) {
printf ("mach_timebase_info failed/n");
}
uint64_t nanosecs = elapsed * info.numer / info.denom;
uint64_t millisecs = nanosecs / 1000000;
As you use this, remember that the elapsed time for a given function will vary with the load the system is under.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
XCode 코드 조각안녕 친구들, 다음은 XCode 초보자를 위한 약간의 요령입니다. 코딩 속도를 어떻게 향상시킬 수 있는지 궁금한 적이 있습니까? 다음은 속도 향상을 위한 기본 요령인 코드 스니펫입니다. 예를 들어 SwiftUI로 앱...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.