资源描述:
《system verilog 类的继承》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、类的继承SystemVerilog支持单继承(类似Java,而不像C++).有一个让SystemVerilog支持多重继承的提案[1],但是短期内不会看到曙光。目录·1什么是继承?·2有什么好处·3开-关定律·4参考资料什么是继承?继承是面向对象编程范式的关键概念。类用来创建用户自定义类型.继承使得用户可以用非常安全,非侵入的方式对类的行为进行增加或者修改。使用继承可以定义子类型,在子类型中增加新的方法和数据。被继承的类一般称为基类(SystemVerilog中的超类),得到的新类一般称为引申类(或子类)。为什么继承如此重要?因为它使得复用得以实现。让我们
2、通过实例来说明.假设我们对一个图像模块进行建模.对其中一部分,我们写了一个代表颜色的类:classColor;byteunsignedred;byteunsignedgreen;byteunsignedblue;functionnew(byteunsignedred_=255,byteunsignedgreen_=255,byteunsignedblue_=255);red=red_;green=green_;blue=blue_;endfunction:newfunctionmix(Colorother);functionbrighter(floatpe
3、rcent);taskdraw_pixel(intx,inty);Now现在它的下一个版本希望能够处理部分透明的图像。为此,我们给Color类增加了一个alpha成员,。alpha代表图像的透明度。alpha越大,图像的像素越结实(不透明)。'0'代表完全透明,使得图片的背景全部可见。因此,我们修改color类如下:classColor;byteunsignedred;byteunsignedgreen;byteunsignedblue;byteunsignedalpha;functionnew(byteunsignedred_=255,byteunsig
4、nedgreen_=255,byteunsignedblue_=255,byteunsignedalpha_=255);red=red_;green=green_;blue=blue_;alpha=alpha_;endfunction:newfunctionmix(Colorother);//newimplementation--woulddependon//alphavaluesforboththecolorsfunctionbrighter(floatpercent);//originalimplementationgoodenoughtaskdraw
5、_pixel(intx,inty);//newimplementation//Otherfunctions...endclass:Color注意,即使许多代码是由之前版本的Color类复制而来,我们还是需要单独维护两个版本的代码。这时继承就可以发挥作用,使用继承,我们可以简单的从原始的Color类继承出新类,来添加alpha成员。classColorWithAlphaextendsColor;byteunsignedalpha;functionnew(byteunsignedred_=255,byteunsignedgreen_=255,byteunsig
6、nedblue_=255,byteunsignedalpha_=255);super.new(red_,green_,blue_);alpha=alpha_;endfunction:newfunctionmix(Colorother);//newimplementation--woulddependon//alphavaluesforboththecolorstaskdraw_pixel(intx,inty);//newimplementation//Otherfunctions...endclass:Color这里我们使用关键字"extend"来创建一个
7、新类ColorWithAlpha.注意到我们仅仅需要声明新增加的alpha数据成员。其他成员作为超类对象的一部分用来表示原始的Color类。有C++背景的用户会注意到在如何访问原始Color类成员的方式,SystemVerilog和C++很不一样。在C++中,原始类(基类)的数据成员的就像本来也就属于继承类的成员一样;在SystemVerilog中,需要额外一层的间接访问,super指定的超类对象和继承类被看作不同的对象。但是,如果需要在继承类中去访问基类成员,SystemVerilog编译器会隐式的帮助完成这部分间接访问。(译者补充:不需要用super去
8、限定,编译器帮忙做这个事情)ColorWithAlphacolor