What is the difference between concurrency and parallelism?

前端 未结 30 3246
清歌不尽
清歌不尽 2020-11-22 00:21

What is the difference between concurrency and parallelism?

Examples are appreciated.

30条回答
  •  轮回少年
    2020-11-22 01:17

    Imagine learning a new programming language by watching a video tutorial. You need to pause the video, apply what been said in code then continue watching. That's concurrency.

    Now you're a professional programmer. And you enjoy listening to calm music while coding. That's Parallelism.

    As Andrew Gerrand said in GoLang Blog

    Concurrency is about dealing with lots of things at once. Parallelism is about doing lots of things at once.

    Enjoy.

提交回复
热议问题