True or False? Concurrency is only possible with parallelism.
时间: 2024-05-24 15:13:07 浏览: 147
PyPI 官网下载 | oslo.concurrency-3.18.1.tar.gz
False. Concurrency is possible without parallelism, as it refers to the ability of a system to handle multiple tasks or processes simultaneously, regardless of whether they are executed in parallel or not. Parallelism, on the other hand, specifically refers to the simultaneous execution of multiple tasks using multiple processors or cores.
阅读全文