本文介绍了什么是Java的System.nanoTime()的iOS等价物?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

iOS的等效于Java的System.nanoTime()是什么?

What is the iOS equivalent of Java's System.nanoTime()?

基本上我只想要一种简单的方法来查看多少毫秒(或几分之一毫秒)一个函数需要执行。

Basically I just want a simple way to see how many milliseconds (or fractions of ms) that a function takes to execute.

推荐答案

您可能正在寻找。

CFAbsoluteTime before = CFAbsoluteTimeGetCurrent();
// You code here
CFAbsoluteTime after = CFAbsoluteTimeGetCurrent();
NSLog(@"duration = %f", after - before);

这篇关于什么是Java的System.nanoTime()的iOS等价物?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-27 00:17