本文主要针对初学者.
之前和人讨论问题时,遇到这样一个关于uvm_compoent new函数基础的问题,在某种程度上反映了基础编程思想对UVM学习的必要性.
直接看问题:function new (string name, uvm_component parent=null);和function new (string name, uvm_component parent);有什么区别?
我们可以通过源代码看看这个问题(源代码来源网址:https://verificationacademy.com/verification-methodology-reference/uvm/docs_1.2/html/)
大概总结一下:
1.(string name, uvm_component parent)为new的参数列表,现在括号里边两个为形参,(string name, uvm_component parent=null)现在第二个为实参.关于形参和实参,自己可以找本书语言相关的书翻一下,这就是一个编程语言基础.
2.注意这里的parent和oop类中的概念parent不是一个概念,初学者很容易混淆这一点,这点自己要想办法理解清楚.这里是一种hirearchy,而class中是继承中的概念。
3.如果parent=null,则该component为顶层component,其parent为uvm_top(关于uvm_top需自己再理解一下).
4.name的作用自然是命名,从上图第二行代码可知其作用.其实无论是name还是parent都是涉及UVM层次结构的管理.即要通过parent的传递知道parent和child之间的情况.
5.建议结合源代码以及实际的代码例子,多看多敲几个component的new,有利于理解.