序列和序列项之间有什么区别?

What`s the differences between Sequences and Sequence Items?

主要区别是什么? 我应该何时选择使用序列以及何时使用序列项?

A sequence 生成一系列 sequence_item 并通过定序器将其发送到驱动程序。因此,序列的 body() 方法定义了将要使用的 sequence_item。

另一方面,序列项是驱动程序用来驱动接口的基本事务。

以下来自UVM Basics tutorial的图片充分解释了它: