相同条件下建进程,是优先级设的高的用的时间少,还是优先级低的用的时间少?
HANDLE hProcess = GetCurrentProcess();
DWORD dwPriorityClass = GetPriorityClass(hProcess);
// Set the high priority class for the specified process
SetPriorityClass(hProcess, NORMAL_PRIORITY_CLASS);
问题点数:20、回复次数:1Top
1 楼ahalf(ahalf)回复于 2003-07-01 07:53:02 得分 20
好像一样。高的可能先执行Top




