|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
请教大家一个问题,关于function和task的返回值问题。
一般来说,function有返回值,除非你使用了void;
而task无返回值。
可是我怎么感觉function中如果不是显式的调用return函数,返回值这个事情跟task一样呢?
比如下面这段代码,这个function算是有返回值的吗?
function void my_agent::build_phase(uvm_phase phase);
super.build_phase(phase);
if (is_active == UVM_ACTIVE) begin
sqr = my_sequencer::type_id::create("sqr", this);
drv = my_driver::type_id::create("drv", this);
end
mon = my_monitor::type_id::create("mon", this);
endfunction
可能例子举的不够恰当。
不知道这个function的返回值是output 的值吗?还是这个函数本身的?或者其他的。比较疑惑。
|
|
|