本文主要是介绍插桩,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/* 起始插桩路径记录 */
long start = clock();
this->supt->setCurProcessResult("has_new_input",start,1);
/* 参数重定向 */
has_new_input = this->supt->getParamValueWithNameAndKey("has_new_input","new_input");
/* 结束插桩路径记录 */
long end = clock();
this->supt->setCurProcessResult("has_new_input",end,2);
this->supt->setCurProcessResult("has_new_input",(end-start),3);
这篇关于插桩的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!