常规方法根本不使用线程,而是将实体实现为状态机.然后你的主循环看起来像这样:
while( 1 ) { foreach( entity in entlist ) { entity->update(); } render(); }