英文:
Can we replace java Thread using parallel stream?
问题
可以用并行流(parallel stream)来替代 Java 的线程(Thread)吗?既然我们可以使用流在并行中执行多个操作,那么为什么还需要线程池呢?
英文:
Can we replace java Thread using parallel stream? As we can perform multiple operation in parallel using stream then why we need thread pools?
答案1
得分: 4
你的意思是是否每个线程使用都可以被并行流替代?
- 线程池在并行流之前就存在了。
- 并不是每个异步问题都可以通过并行流来解决。
英文:
Do you mean whether every thread use can be replaces by parallel streams?
- Threadpools existed long before parallel stream.
- Not every asynchronous problem can be solved by parallel streams.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论