| 释义 |
forkjoin 分叉连接(指令) In computer programming, a control instruction in parallel computation systems. Fork indicates the next instructions that may be performed in parallel. Join indicates the instructions that must be executed before the designated instruction can be obeyed. 在计算机程序设计中,并行计算系统中使用的一种控制指令。Fork(分叉)表示可以并行 方式执行本指令下面列出的一些指令。Join(连接)表示在执行指定的指令之前必须要执行 的一些指令。 参阅parallel computer。 |