我找到了这段代码here。如果我划分(t2-t1)/CLOCK_PER_SEC
我会在几秒钟内得到时间吗?如何找到CLOCK_PER_SEC?有没有更好的方法来查找代码或函数的执行时间?
#include<time.h>
main()
{
clock_t t1=clock();
// Your code that takes more than 1 sec;
clock_t t2=clock();
printf("The time taken is.. %g ", (t2-t1));
..
答案 0 :(得分:1)
你可以这样做:
document.querySelector('input[name="u_firstname"]').value = 'New value'
您可以在我的Time measurements中阅读更多内容。