Consider the template below:
methodA() { Print (abc); // Instruction 1 Calculate(a+b+c); // Instruction 2 Call methodB();// Instruction 3 Call methodC();// Instruction 4 Print(abcd); // Instruction 5 for(; ;) // Instruction 6 { . .. } }
The incoming time for method A () in JProfiler shows the total time spent only by Method (). Is this integral time the sum of the processor time + I / O latency, or is it just processor time?
source share