D语言继承操作示例代码
代码语言:d
所属分类:数组
代码描述:D语言继承操作示例代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
import std.stdio; // Base class class Shape { public: void setWidth(int w) { width = w; } void setHeight(int h) { height = h; } protected: int width; int height; } // Derived class class Rectangle: Shape { public: int getAr.........完整代码请登录后点击上方下载按钮下载查看
网友评论0