📜  多线程是否会减慢系统速度 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:35.445000             🧑  作者: Mango

代码示例1
Having more threads than what your CPU supports you are actually 
serializing and not parallelizing. The more threads you have the 
slower your system will be. Your results is actually a proof of this 
phenomenon.

That's why JS comes into the picture