关于new函数
时间:10-02
整理:3721RD
点击:
有如下代码:class my_monitor extends uvm_monitor;
....
function new(string name = "my_monitor", uvm_component parent = null);
super.new(name,parent);
endfunction
....
endclass
关于内部的new函数怎么理解呢,还有其中的super.new函数?
....
function new(string name = "my_monitor", uvm_component parent = null);
super.new(name,parent);
endfunction
....
endclass
关于内部的new函数怎么理解呢,还有其中的super.new函数?
我的意思是 这里的new与在agent中的通过creat实现的monitor的实例化有什么区别?
这个你可以看看systemverilog中类的那章,说的很清楚
嗯 谢谢!~