码迷,mamicode.com
首页 > 其他好文 > 详细

$cast使用,父类与子类句柄(handle)的关系

时间:2017-03-03 19:16:41      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:bsp   and   sign   pat   ica   any   display   sig   new   

?The handle of a child class can be assigned to a parent handle without any problem.
?Using $cast to assign the handle of a parent class to a child handle.
 

class Parent;

int m1 = 2;

endclass

 

class Child extends Parent;

int m2 = 5;

endclass

 

initial begin

Parent parent;

Child child1, child2 = new();

 

parent = child2;

child1 = parent;

$display("m2=%0d",child1.m2);

end

////////////////// simulation //////////////////

Error-[SV-ICA] Illegal class assignment

Expression ‘parent‘ on rhs is not a class or a compatible class and hence

  cannot be assigned to a class handle on lhs.

 

initial begin

Parent parent;

Child child1, child2 = new();

 

parent = child2;

$cast(child1 , parent);

$display("m2=%0d",child1.m2);

end

////////////////// simulation //////////////////

m2=5

$cast使用,父类与子类句柄(handle)的关系

标签:bsp   and   sign   pat   ica   any   display   sig   new   

原文地址:http://www.cnblogs.com/qczhu/p/6497929.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!