并发是同时执行多个指令序列。它涉及同时执行多个任务。
Dart使用Isolates
作为并行工作的工具。dart:isolate
包是Dart的解决方案,用于获取单线程Dart代码并允许应用程序更多地使用可用的硬件。
隔离(Isolates)顾名思义,是运行代码的独立单元。在它们之间发送数据的唯一方法是传递消息,就像在客户端和服务器之间传递消息的方式一样。隔离有助于程序利用多核微处理器开箱即用。
示例
下面通过一个例子代码来更好地理解这个概念。
import 'dart:isolate'; void foo(var message){ print('execution from foo ... the message is :${message}'); } void main(){ Isolate.spawn(foo,'Hello!!'); Isolate.spawn(foo,'Greetings!!'); Isolate.spawn(foo,'Welcome!!'); print('execution from main1'); print('execution from main2'); print('execution from main3'); }
这里,Isolate
类的spawn
方法用来与其余代码并行运行函数foo
。spawn
函数有两个参数 -
如果没有对象传递给生成的函数,则可以传递NULL
值。
这两个函数(foo
和main
)可能不一定每次都以相同的顺序运行。无法保证foo
何时执行以及何时执行main()
。每次运行时输出都不同。
输出1
execution from main1 execution from main2 execution from main3 execution from foo ... the message is :Hello!!
输出2
execution from main1 execution from main2 execution from main3 execution from foo ... the message is :Welcome!! execution from foo ... the message is :Hello!! execution from foo ... the message is :Greetings!!
从输出中,可以得出结论,Dart代码可以从运行代码中产生新的隔离,就像Java或C#代码可以启动新线程一样。
隔离与线程的不同之处在于隔离区有自己的内存。没有办法在隔离区之间共享变量 - 隔离区之间通信的唯一方法是通过消息传递。
注 - 对于不同的硬件和操作系统配置,上述输出将有所不同。
隔离与Future
异步执行复杂的计算工作对于确保应用程序的响应性非常重要。Dart Future是一种在完成后检索异步任务的值的机制,而Dart Isolates是一种抽象并行性并在实际的高级基础上实现它的工具。