以下のメソッド テンプレートを検討してください。
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
{
. ..
}
}
JProfiler の methodA() の固有時間は、methodA() だけでかかった合計時間を示します。この固有の時間は、CPU 時間 + I/O 待機時間の合計ですか、それとも単なる CPU 時間ですか?