线程优先级 normal解决思路
线程优先级 normal
请教大家一个问题,delphi线程优先级划分,normal级别是不是也有更详细的划分啊?求详解
------解决方案--------------------
你是如何同步的啊?
------解决方案--------------------
这钟点,谁不忙着吃饭去呢?
------解决方案--------------------
线程优先级别划分,
TThreadPriority = (tpIdle, tpLowest, tpLower, tpNormal, tpHigher, tpHighest,
tpTimeCritical);
参考Classes单元里的TThread的
property Priority: TThreadPriority read GetPriority write SetPriority;
属性
以及GetPriority 和 SetPriority方法
严格来说,应该是Windows线程的优先级别,而不是Delphi线程
请教大家一个问题,delphi线程优先级划分,normal级别是不是也有更详细的划分啊?求详解
------解决方案--------------------
你是如何同步的啊?
------解决方案--------------------
这钟点,谁不忙着吃饭去呢?
------解决方案--------------------
线程优先级别划分,
TThreadPriority = (tpIdle, tpLowest, tpLower, tpNormal, tpHigher, tpHighest,
tpTimeCritical);
参考Classes单元里的TThread的
property Priority: TThreadPriority read GetPriority write SetPriority;
属性
以及GetPriority 和 SetPriority方法
严格来说,应该是Windows线程的优先级别,而不是Delphi线程