Parallel programming in Java

后端 未结 19 1149
时光说笑
时光说笑 2021-01-30 11:14

How can we do Parallel Programming in Java? Is there any special framework for that? How can we make the stuff work?

I will tell you guys what I need, think that I devel

19条回答
  •  梦如初夏
    2021-01-30 11:33

    Parallelism

    Parallelism means that an application splits its tasks up into smaller subtasks which can be processed in parallel, for instance on multiple CPUs at the exact same time.

提交回复
热议问题