本文整理汇总了Java中codechicken.core.TaskProfiler.ProfilerResult类的典型用法代码示例。如果您正苦于以下问题:Java ProfilerResult类的具体用法?Java ProfilerResult怎么用?Java ProfilerResult使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ProfilerResult类属于codechicken.core.TaskProfiler包,在下文中一共展示了ProfilerResult类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: drawForeground
import codechicken.core.TaskProfiler.ProfilerResult; //导入依赖的package包/类
@Override
public void drawForeground(int recipe)
{
List<ProfilerResult> results = profiler.getResults();
for(Iterator<ProfilerResult> it = results.iterator(); it.hasNext();)
if(it.next().name.equals(getRecipeName()))
it.remove();
Collections.sort(results, new Comparator<ProfilerResult>()
{
@Override
public int compare(ProfilerResult o1, ProfilerResult o2)
{
return o1.time < o2.time ? 1 : -1;
}
});
for(int i = recipe*6; i < results.size() && i < (recipe+1)*6; i++)
{
ProfilerResult r = results.get(i);
int y = (i%6)*20+6;
drawString(r.name, 8, y, 0xFF808080, false);
DecimalFormat format = new DecimalFormat("0.00");
String s = format.format(r.fraction*100)+"%";
if(r.time < 1000000L)
s+= " ("+(r.time/1000)+"us)";
else
s+= " ("+(r.time/1000000)+"ms)";
drawString(s, 156-getStringWidth(s), y+10, 0xFF404040, false);
}
}